rhymix/modules/issuetracker/tpl/modify_priority.html
2008-09-09 01:39:39 +00:00

44 lines
1.4 KiB
HTML

<!--#include("header.html")-->
<!--%import("css/issuetracker.css")-->
<!--%import("filter/insert_priority.xml")-->
<!--@if($priority)-->
<form action="{Context::getRequestUri()}" method="post" onsubmit="return procFilter(this, insert_priority)">
<input type="hidden" name="module_srl" value="{$module_srl}" />
<input type="hidden" name="priority_srl" value="{$priority->priority_srl}" />
<!--@if($priority->is_default=="Y")--><input type="hidden" name="is_default" value="Y" /><!--@end-->
<table cellspacing="0" class="adminTable">
<thead>
<col width="*" />
<col width="110" />
<col width="100" />
<col width="110" />
<tr>
<th scope="col">{$lang->name}</th>
<th scope="col">{$lang->order}</th>
<th scope="col">{$lang->cmd_default}</th>
<th scope="col">&nbsp;</th>
</tr>
</thead>
<tbody>
<tr class="ht60">
<td><input name="title" type="text" class="inputTypeText w300" value="{$priority->title}" /></td>
<td><input name="listorder" type="text" class="inputTypeText w60" value="{$priority->listorder}" /></td>
<td>
<!--@if($priority->is_default=='Y')-->
{$lang->is_default}
<!--@else-->
<input type="checkbox" name="is_default" value="Y" />
<!--@end-->
</td>
<td>
<span class="button"><input type="submit" value="{$lang->cmd_registration}" accesskey="s" /></span>
</td>
</tr>
<tr>
</tr>
</tbody>
</table>
</form>
<!--@end-->