mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-10 12:32:14 +09:00
Member UI '*' asterisk position update.
git-svn-id: http://xe-core.googlecode.com/svn/branches/maserati@12425 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
8f722499fb
commit
33944a164a
3 changed files with 10 additions and 7 deletions
|
|
@ -390,11 +390,11 @@ class memberAdminView extends member
|
||||||
$formTag->title = ($formInfo->isDefaultForm) ? $lang->{$formInfo->name} : $formInfo->title;
|
$formTag->title = ($formInfo->isDefaultForm) ? $lang->{$formInfo->name} : $formInfo->title;
|
||||||
if($isAdmin)
|
if($isAdmin)
|
||||||
{
|
{
|
||||||
if($formInfo->mustRequired) $formTag->title = $formTag->title.' <em style="color:red">*</em>';
|
if($formInfo->mustRequired) $formTag->title = '<em style="color:red">*</em> '.$formTag->title;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if ($formInfo->required && $formInfo->name != 'password') $formTag->title = $formTag->title.' <em style="color:red">*</em>';
|
if ($formInfo->required && $formInfo->name != 'password') $formTag->title = '<em style="color:red">*</em> '.$formTag->title;
|
||||||
}
|
}
|
||||||
$formTag->name = $formInfo->name;
|
$formTag->name = $formInfo->name;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -20,27 +20,27 @@
|
||||||
<input type="hidden" name="success_return_url" value="{getUrl('act', $act)}" cond="$member_srl" />
|
<input type="hidden" name="success_return_url" value="{getUrl('act', $act)}" cond="$member_srl" />
|
||||||
<input type="hidden" name="success_return_url" value="{getUrl('act', 'dispMemberAdminList')}" cond="!$member_srl" />
|
<input type="hidden" name="success_return_url" value="{getUrl('act', 'dispMemberAdminList')}" cond="!$member_srl" />
|
||||||
<div cond="$member_srl" class="x_control-group">
|
<div cond="$member_srl" class="x_control-group">
|
||||||
<label class="x_control-label" for="identifierForm">{$identifierForm->title} <em style="color:red">*</em></label>
|
<label class="x_control-label" for="identifierForm"><em style="color:red">*</em> {$identifierForm->title}</label>
|
||||||
<div class="x_controls">
|
<div class="x_controls">
|
||||||
<input type="hidden" name="{$identifierForm->name}" value="{$identifierForm->value}" />
|
<input type="hidden" name="{$identifierForm->name}" value="{$identifierForm->value}" />
|
||||||
<input id="identifierForm" type="email" name="{$identifierForm->name}" value="{$identifierForm->value}" disabled="disabled" />
|
<input id="identifierForm" type="email" name="{$identifierForm->name}" value="{$identifierForm->value}" disabled="disabled" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div cond="!$member_srl" class="x_control-group">
|
<div cond="!$member_srl" class="x_control-group">
|
||||||
<label class="x_control-label" for="identifierForm">{$identifierForm->title} <em style="color:red">*</em></label>
|
<label class="x_control-label" for="identifierForm"><em style="color:red">*</em> {$identifierForm->title}</label>
|
||||||
<div class="x_controls">
|
<div class="x_controls">
|
||||||
<input id="identifierForm" type="text" name="{$identifierForm->name}" value="" />
|
<input id="identifierForm" type="text" name="{$identifierForm->name}" value="" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div cond="$member_srl" class="x_control-group">
|
<div cond="$member_srl" class="x_control-group">
|
||||||
<label class="x_control-label" for="password">{$lang->password} <em style="color:red">*</em></label>
|
<label class="x_control-label" for="password"><em style="color:red">*</em> {$lang->password}</label>
|
||||||
<div class="x_controls">
|
<div class="x_controls">
|
||||||
<input type="hidden" name="password" value="{$member_info->password}" />
|
<input type="hidden" name="password" value="{$member_info->password}" />
|
||||||
<input id="password" type="text" name="reset_password" value="" />
|
<input id="password" type="text" name="reset_password" value="" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div cond="!$member_srl" class="x_control-group">
|
<div cond="!$member_srl" class="x_control-group">
|
||||||
<label class="x_control-label" for="password">{$lang->password} <em style="color:red">*</em></label>
|
<label class="x_control-label" for="password"><em style="color:red">*</em> {$lang->password}</label>
|
||||||
<div class="x_controls">
|
<div class="x_controls">
|
||||||
<input id="password" type="text" name="password" value="" />
|
<input id="password" type="text" name="password" value="" />
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@
|
||||||
<td>{zdate($memberInfo[last_login],"Y-m-d H:i:s")}</td>
|
<td>{zdate($memberInfo[last_login],"Y-m-d H:i:s")}</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr loop="$displayDatas => $item">
|
<tr loop="$displayDatas => $item">
|
||||||
<th scope="row" >{$item->title} <em style="color:red" cond="$item->required || $item->mustRequired">*</em></th>
|
<th scope="row" ><em style="color:red" cond="$item->required || $item->mustRequired">*</em> {$item->title}</th>
|
||||||
<td class="text">{$item->value}</td>
|
<td class="text">{$item->value}</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
|
@ -38,6 +38,9 @@
|
||||||
<th scope="row"><div>{$lang->description}</div></th>
|
<th scope="row"><div>{$lang->description}</div></th>
|
||||||
<td>{$memberInfo['description']} </td>
|
<td>{$memberInfo['description']} </td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<style scoped>
|
||||||
|
.x_table th{text-align:right}
|
||||||
|
</style>
|
||||||
</table>
|
</table>
|
||||||
<div class="x_clearfix">
|
<div class="x_clearfix">
|
||||||
<span class="x_pull-left" cond="$member_srl"><button class="x_btn" type="button" onclick="history.go(-1)">{$lang->cmd_back}</button></span>
|
<span class="x_pull-left" cond="$member_srl"><button class="x_btn" type="button" onclick="history.go(-1)">{$lang->cmd_back}</button></span>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue