mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-31 09:09:59 +09:00
Add member skin - start
Modify style based on default member skin.
This commit is contained in:
parent
4bfee77add
commit
ef247c2ea9
40 changed files with 1446 additions and 0 deletions
35
modules/member/skins/simple_world/member_nick.html
Normal file
35
modules/member/skins/simple_world/member_nick.html
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
<include target="./common_header.html" />
|
||||
<h1>{$member_title = $lang->cmd_modify_nickname_log}</h1>
|
||||
<table class="table table-striped table-hover">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>{$lang->date}</th>
|
||||
<th>{$lang->nick_name_before_changing}</th>
|
||||
<th class="title">{$lang->nick_name_after_changing}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr loop="$nickname_list => $val">
|
||||
<td>
|
||||
{zdate($val->regdate,"Y-m-d H:i:s")}
|
||||
</td>
|
||||
<td>
|
||||
{$val->before_nick_name}
|
||||
</td>
|
||||
<td>
|
||||
{$val->after_nick_name}
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
</tbody>
|
||||
</table>
|
||||
<div class="pagination pagination-centered">
|
||||
<ul>
|
||||
<li><a href="{getUrl('page','','module_srl','')}" class="direction">« {$lang->first_page}</a></li>
|
||||
<!--@while($page_no = $page_navigation->getNextPage())-->
|
||||
<li class="active"|cond="$page == $page_no"><a href="{getUrl('page',$page_no,'module_srl','')}">{$page_no}</a></li>
|
||||
<!--@end-->
|
||||
<li><a href="{getUrl('page',$page_navigation->last_page,'module_srl','')}" class="direction">{$lang->last_page} »</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<include target="./common_footer.html" />
|
||||
Loading…
Add table
Add a link
Reference in a new issue