mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-20 11:49:56 +09:00
issue:17256358 - added issuetracker module
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4484 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
8f6568e5a7
commit
5cccd30a27
163 changed files with 7363 additions and 0 deletions
44
modules/issuetracker/tpl/modify_priority.html
Normal file
44
modules/issuetracker/tpl/modify_priority.html
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
<!--#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-->
|
||||
Loading…
Add table
Add a link
Reference in a new issue