mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 00:39:57 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@5785 201d5d3c-b55e-5fd7-737f-ddc643e51545
40 lines
1.4 KiB
HTML
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> <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-->
|