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@4484 201d5d3c-b55e-5fd7-737f-ddc643e51545
44 lines
1.4 KiB
HTML
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"> </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-->
|