Minahito
minah****@users*****
2005年 12月 24日 (土) 19:09:07 JST
Index: xoops2jp/html/modules/user/admin/templates/group_edit.html diff -u /dev/null xoops2jp/html/modules/user/admin/templates/group_edit.html:1.1.2.1 --- /dev/null Sat Dec 24 19:09:07 2005 +++ xoops2jp/html/modules/user/admin/templates/group_edit.html Sat Dec 24 19:09:07 2005 @@ -0,0 +1,38 @@ +<h3>» <{$smarty.const._MD_A_USER_LANG_GROUP_LIST}></h3> + +<{if $actionForm->getVar('groupid') }> + <h4><{$smarty.const._MD_A_USER_LANG_GROUP_EDIT}></h4> +<{else}> + <h4><{$smarty.const._MD_A_USER_LANG_GROUP_NEW}></h4> +<{/if}> + +<{if $actionForm->hasError()}> + <ul> + <{foreach item=message from=$actionForm->getErrorMessages()}> + <li><{$message|escape}></li> + <{/foreach}> + </ul> +<{/if}> +<form action="?action=GroupEdit" method="post"> + <{xoops_input type=hidden name=groupid value=$actionForm->getVar('groupid')}> + <table class="outer" cellspacing="1"> + <tr> + <td class="head"><{$smarty.const._MD_A_USER_LANG_GROUP_NAME}></td> + <td class="even"> + <{xoops_input type=text name=name value=$actionForm->getVar('name')}> + </td> + </tr> + <tr> + <td class="head"><{$smarty.const._MD_A_USER_LANG_GROUP_DESC}></td> + <td class="even"> + <{xoops_dhtmltarea name=description value=$actionForm->getVar('description')}> + </td> + </tr> + <tr> + <td class="head"><{$smarty.const._MD_A_USER_LANG_CONTROL}></td> + <td class="even"> + <input type="submit" value="<{$smarty.const._MD_A_USER_LANG_SUBMIT}>" /> + </td> + </tr> + </table> +</form>