mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 00:39:57 +09:00
issue 2533 fixed a header tag.
git-svn-id: http://xe-core.googlecode.com/svn/branches/maserati@11623 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
b7aaef0e01
commit
0080cfdfe8
1 changed files with 47 additions and 49 deletions
|
|
@ -1,52 +1,50 @@
|
|||
<h1 class="h1">{$lang->member_info}</h1>
|
||||
<div>
|
||||
<table class="x_table x_table-striped x_table-hover">
|
||||
<tr>
|
||||
<th style="width:120px">{$lang->signup_date}</th>
|
||||
<td>{zdate($memberInfo[regdate],"Y-m-d")}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>{$lang->last_login}</th>
|
||||
<td>{zdate($memberInfo[last_login],"Y-m-d H:i:s")}</td>
|
||||
</tr>
|
||||
<tr loop="$displayDatas => $item">
|
||||
<th scope="row" >{$item->title} <em style="color:red" cond="$item->required || $item->mustRequired">*</em></th>
|
||||
<td class="text">{$item->value}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">{$lang->member_group}</th>
|
||||
<td class="text">{implode(', ', $memberInfo['group_list'])}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">{$lang->allow_mailing}</th>
|
||||
<td class="text"><!--@if($memberInfo['allow_mailing'] == 'Y')-->{$lang->cmd_yes}<!--@else-->{$lang->cmd_no}<!--@end--></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">{$lang->allow_message}</th>
|
||||
<td class="text">{$lang->allow_message_type[$memberInfo['allow_message']]}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">{$lang->denied}</th>
|
||||
<td class="text"><!--@if($memberInfo['denied'] == 'N')-->{$lang->cmd_no}<!--@else-->{$lang->cmd_yes}<!--@end--></td>
|
||||
</tr>
|
||||
<tr cond="$memberInfo['limit_date']">
|
||||
<th scope="row">{$lang->limit_date}</th>
|
||||
<td class="text">{zdate($memberInfo['limit_date'],"Y-m-d H:i")}</td>
|
||||
</tr>
|
||||
<tr cond="$memberInfo['is_admin'] == 'Y'">
|
||||
<th scope="row">{$lang->is_admin}</th>
|
||||
<td class="text">{$lang->cmd_yes}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">{$lang->member_group}</th>
|
||||
<td class="text">{implode(', ', $memberInfo['group_list'])}</td>
|
||||
</tr>
|
||||
<tr cond="$memberInfo['description']">
|
||||
<th scope="row"><div>{$lang->description}</div></th>
|
||||
<td>{$memberInfo['description']} </td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="x_page-header"><h1>{$lang->member_info}</h1></div>
|
||||
<table class="x_table x_table-striped x_table-hover">
|
||||
<tr>
|
||||
<th style="width:120px">{$lang->signup_date}</th>
|
||||
<td>{zdate($memberInfo[regdate],"Y-m-d")}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>{$lang->last_login}</th>
|
||||
<td>{zdate($memberInfo[last_login],"Y-m-d H:i:s")}</td>
|
||||
</tr>
|
||||
<tr loop="$displayDatas => $item">
|
||||
<th scope="row" >{$item->title} <em style="color:red" cond="$item->required || $item->mustRequired">*</em></th>
|
||||
<td class="text">{$item->value}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">{$lang->member_group}</th>
|
||||
<td class="text">{implode(', ', $memberInfo['group_list'])}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">{$lang->allow_mailing}</th>
|
||||
<td class="text"><!--@if($memberInfo['allow_mailing'] == 'Y')-->{$lang->cmd_yes}<!--@else-->{$lang->cmd_no}<!--@end--></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">{$lang->allow_message}</th>
|
||||
<td class="text">{$lang->allow_message_type[$memberInfo['allow_message']]}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">{$lang->denied}</th>
|
||||
<td class="text"><!--@if($memberInfo['denied'] == 'N')-->{$lang->cmd_no}<!--@else-->{$lang->cmd_yes}<!--@end--></td>
|
||||
</tr>
|
||||
<tr cond="$memberInfo['limit_date']">
|
||||
<th scope="row">{$lang->limit_date}</th>
|
||||
<td class="text">{zdate($memberInfo['limit_date'],"Y-m-d H:i")}</td>
|
||||
</tr>
|
||||
<tr cond="$memberInfo['is_admin'] == 'Y'">
|
||||
<th scope="row">{$lang->is_admin}</th>
|
||||
<td class="text">{$lang->cmd_yes}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">{$lang->member_group}</th>
|
||||
<td class="text">{implode(', ', $memberInfo['group_list'])}</td>
|
||||
</tr>
|
||||
<tr cond="$memberInfo['description']">
|
||||
<th scope="row"><div>{$lang->description}</div></th>
|
||||
<td>{$memberInfo['description']} </td>
|
||||
</tr>
|
||||
</table>
|
||||
<div class="x_clearfix">
|
||||
<span class="x_pull-left" cond="$member_srl"><button class="x_btn x_btn-large" type="button" onclick="history.go(-1)">{$lang->cmd_back}</button></span>
|
||||
<span class="x_pull-right"><a class="x_btn x_btn-primary x_btn-large" href="{getUrl('', 'module', 'admin', 'act', 'dispMemberAdminInsert', 'member_srl', $member_srl)}">{$lang->cmd_modify}...</a></span>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue