edit_group.tpl
来自「一个基于web的开源项目管理工具」· TPL 代码 · 共 49 行
TPL
49 行
{include file="phpgacl/header.tpl"} <style type="text/css"> {literal} select { margin-top: 0px; } input.group-name, input.group-value { width: 99%; } {/literal} </style> </head> <body>{include file="phpgacl/navigation.tpl"} <form method="post" name="edit_group" action="edit_group.php"> <table cellpadding="2" cellspacing="2" border="2" width="100%"> <tbody> <tr> <th width="4%">ID</th> <th width="32%">Parent</th> <th width="32%">Name</th> <th width="32%">Value</th> </tr> <tr valign="top"> <td align="center">{$id|default:"N/A"}</td> <td> <select name="parent_id" tabindex="0" multiple> {html_options options=$options_groups selected=$parent_id} </select> </td> <td> <input type="text" class="group-name" size="50" name="name" value="{$name}"> </td> <td> <input type="text" class="group-value" size="50" name="value" value="{$value}"> </td> </tr> <tr class="controls" align="center"> <td colspan="4"> <input type="submit" class="button" name="action" value="Submit"> <input type="reset" class="button" value="Reset"> </td> </tr> </tbody> </table> <input type="hidden" name="group_id" value="{$id}"> <input type="hidden" name="group_type" value="{$group_type}"> <input type="hidden" name="return_page" value="{$return_page}"> </form>{include file="phpgacl/footer.tpl"}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?