rhymix/modules/issuetracker/tpl/modify_priority.html
2009-03-06 05:33:56 +00:00

40 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="rowTable">
<thead>
<tr>
<th scope="col" class="wide"><div>{$lang->name}<div></th>
<th scope="col"><div>{$lang->order}<div></th>
<th scope="col"><div>{$lang->is_default}<div></th>
<th scope="col"><div>&nbsp;<div></th>
</tr>
</thead>
<tbody>
<tr>
<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 class="nowrap">
<!--@if($priority->is_default=='Y')-->
{$lang->is_default}
<!--@else-->
<input type="checkbox" name="is_default" value="Y" />
<!--@end-->
</td>
<td>
<span class="button black strong"><input type="submit" value="{$lang->cmd_registration}" accesskey="s" /></span>
</td>
</tr>
<tr>
</tr>
</tbody>
</table>
</form>
<!--@end-->