mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 00:39:57 +09:00
182 lines
8.8 KiB
HTML
182 lines
8.8 KiB
HTML
<!--#include("header.html")-->
|
|
<!--%import("css/issuetracker.css")-->
|
|
<!--%import("filter/insert_milestone.xml")-->
|
|
<!--%import("filter/delete_milestone.xml")-->
|
|
<!--%import("filter/insert_priority.xml")-->
|
|
<!--%import("filter/delete_priority.xml")-->
|
|
<!--%import("filter/insert_type.xml")-->
|
|
<!--%import("filter/delete_type.xml")-->
|
|
<!--%import("filter/insert_component.xml")-->
|
|
<!--%import("filter/delete_component.xml")-->
|
|
|
|
<!--// calendar -->
|
|
<!--%import("../../common/js/calendar.min.js",optimized=false)-->
|
|
<!--@if($lang_type == 'ko')-->
|
|
<!--%import("../../common/js/calendar-ko.js",optimized=false)-->
|
|
<!--@elseif($lang_type == 'es')-->
|
|
<!--%import("../../common/js/calendar-es.js",optimized=false)-->
|
|
<!--@elseif($lang_type == 'ge')-->
|
|
<!--%import("../../common/js/calendar-ge.js",optimized=false)-->
|
|
<!--@elseif($lang_type == 'ru')-->
|
|
<!--%import("../../common/js/calendar-ru.js",optimized=false)-->
|
|
<!--@elseif($lang_type == 'zh-CN')-->
|
|
<!--%import("../../common/js/calendar-zh-CN.js",optimized=false)-->
|
|
<!--@else-->
|
|
<!--%import("../../common/js/calendar-en.js",optimized=false)-->
|
|
<!--@end-->
|
|
<!--%import("../../common/js/calendar-setup.js",optimized=false)-->
|
|
<!--%import("../../common/css/calendar-system.css",optimized=false)-->
|
|
|
|
<form action="{Context::getRequestUri()}" method="post" onsubmit="return procFilter(this, insert_milestone)">
|
|
<input type="hidden" name="module_srl" value="{$module_srl}" />
|
|
|
|
<table cellspacing="0" class="adminTable">
|
|
<caption>{$lang->milestone}</caption>
|
|
<thead>
|
|
<tr>
|
|
<th scope="col" class="wide"><div>{$lang->name}</div></th>
|
|
<th scope="col"><div>{$lang->completed_date}</div></th>
|
|
<th scope="col"><div>{$lang->deadline}</div></th>
|
|
<th scope="col"><div>{$lang->is_default}</div></th>
|
|
<th scope="col"><div> </div></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<!--@foreach($milestone_list as $val)-->
|
|
<tr>
|
|
<td <!--@if($val->is_completed=='Y')-->class="strike"<!--@end-->>{$val->title}</td>
|
|
<td class="date center nowrap"><!--@if($val->released_date)-->{zdate($val->released_date,"Y-m-d")}<!--@else--> <!--@end--></td>
|
|
<td class="date center nowrap"><!--@if($val->deadline)-->{zdate($val->deadline,"Y-m-d")}<!--@else--> <!--@end--></td>
|
|
<td class="center"><!--@if($val->is_default=='Y')-->{$lang->is_default}<!--@else--> <!--@end--></td>
|
|
<td class="center">
|
|
<a href="{getUrl('module_srl',$module_srl,'act','dispIssuetrackerAdminModifyMilestone','milestone_srl',$val->milestone_srl)}"><img src="images/buttonModify.gif" alt="" /></a>
|
|
<!--@if($val->is_default!='Y')--><a href="#" onclick="deleteByFilter('{$val->milestone_srl}', delete_milestone);"><img src="images/buttonDeleteX.gif" alt="" /></a><!--@else--> <!--@end-->
|
|
</td>
|
|
</tr>
|
|
<!--@end-->
|
|
|
|
<tr>
|
|
<td colspan="2">
|
|
<input name="title" type="text" class="inputTypeText fixWidth" /><br />
|
|
</td>
|
|
<td class="nowrap">
|
|
<input type="hidden" name="deadline" id="date_deadline" />
|
|
<div class="display_date" id="str_deadline"></div>
|
|
<script type="text/javascript">
|
|
DyCalendar.setup( { firstDay : 0, inputField : "date_deadline", ifFormat : "%Y%m%d", displayArea : "str_deadline", daFormat : "%Y-%m-%d" } );
|
|
</script>
|
|
</td>
|
|
<td class="center"><input type="checkbox" name="is_default" value="Y" /></td>
|
|
<td class="vtop" rowspan="2"><input type="submit" value="{$lang->cmd_registration}" accesskey="s"class="btnSubmit" /></td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="4">
|
|
<textarea name="description" class="inputTypeTextArea fixWidth" /></textarea>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</form>
|
|
|
|
<form id="deleteForm" action="./" method="POST">
|
|
<input type="hidden" id="target_srl" name="target_srl" value="" />
|
|
</form>
|
|
|
|
<form action="./" method="post" onsubmit="return procFilter(this, insert_priority)">
|
|
<input type="hidden" name="module_srl" value="{$module_srl}" />
|
|
|
|
<table cellspacing="0" class="adminTable">
|
|
<caption>{$lang->priority}</caption>
|
|
<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>
|
|
<!--@foreach($priority_list as $val)-->
|
|
<tr>
|
|
<td>{$val->title}</td>
|
|
<td class="center number">{$val->listorder}</td>
|
|
<td class="center"><!--@if($val->is_default=='Y')-->{$lang->is_default}<!--@else--> <!--@end--></td>
|
|
<td class="button">
|
|
<a href="{getUrl('module_srl',$module_srl,'act','dispIssuetrackerAdminModifyPriority','priority_srl',$val->priority_srl)}"><img src="images/buttonModify.gif" alt="" /></a>
|
|
<!--@if($val->is_default!='Y')--><a href="#" onclick="deleteByFilter('{$val->priority_srl}', delete_priority);"><img src="images/buttonDeleteX.gif" /></a><!--@else--> <!--@end-->
|
|
</td>
|
|
</tr>
|
|
<!--@end-->
|
|
<tr>
|
|
<td><input name="title" type="text" class="inputTypeText fixWidth" /></td>
|
|
<td> </td>
|
|
<td class="center"><input type="checkbox" name="is_default" value="Y" /></td>
|
|
<td><input type="submit" value="{$lang->cmd_registration}" class="btnSubmit" accesskey="s"/></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
</form>
|
|
|
|
<form action="./" method="post" onsubmit="return procFilter(this, insert_type)">
|
|
<input type="hidden" name="module_srl" value="{$module_srl}" />
|
|
<table cellspacing="0" class="adminTable">
|
|
<caption>{$lang->type}</caption>
|
|
<thead>
|
|
<tr>
|
|
<th scope="col" class="wide"><div>{$lang->type}</div></th>
|
|
<th scope="col"><div>{$lang->is_default}</div></th>
|
|
<th scope="col"><div> </div></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<!--@foreach($type_list as $val)-->
|
|
<tr>
|
|
<td>{$val->title}</td>
|
|
<td class="center"><!--@if($val->is_default=='Y')-->{$lang->is_default}<!--@else--> <!--@end--></td>
|
|
<td class="center">
|
|
<a href="{getUrl('module_srl',$module_srl,'act','dispIssuetrackerAdminModifyType','type_srl',$val->type_srl)}"><img src="images/buttonModify.gif" alt="" /></a>
|
|
<!--@if($val->is_default!='Y')--><a href="#" onclick="deleteByFilter('{$val->type_srl}', delete_type);"><img src="images/buttonDeleteX.gif" /></a><!--@else--> <!--@end-->
|
|
</td>
|
|
</tr>
|
|
<!--@end-->
|
|
<tr>
|
|
<td><input name="title" type="text" class="inputTypeText fixWidth" /></td>
|
|
<td class="center"><input type="checkbox" name="is_default" value="Y" /></td>
|
|
<td><input type="submit" value="{$lang->cmd_registration}" class="btnSubmit" accesskey="s"/></td>
|
|
</tbody>
|
|
</table>
|
|
</form>
|
|
<!--// HalfTable Left -->
|
|
|
|
<form action="./" method="post" onsubmit="return procFilter(this, insert_component)">
|
|
<input type="hidden" name="module_srl" value="{$module_srl}" />
|
|
|
|
<table cellspacing="0" class="adminTable">
|
|
<caption>{$lang->component}</caption>
|
|
<thead>
|
|
<tr>
|
|
<th scope="col" class="wide"><div>{$lang->component}</div></th>
|
|
<th scope="col"><div>{$lang->is_default}</div></th>
|
|
<th scope="col"><div> </div></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<!--@foreach($component_list as $val)-->
|
|
<tr>
|
|
<td>{$val->title}</td>
|
|
<td class="center"><!--@if($val->is_default=='Y')-->{$lang->is_default}<!--@else--> <!--@end--></td>
|
|
<td class="center">
|
|
<a href="{getUrl('module_srl',$module_srl,'act','dispIssuetrackerAdminModifyComponent','component_srl',$val->component_srl)}"><img src="images/buttonModify.gif" alt="" /></a>
|
|
<!--@if($val->is_default!='Y')--><a href="#" onclick="deleteByFilter('{$val->component_srl}', delete_component);"><img src="images/buttonDeleteX.gif" /></a><!--@else--> <!--@end-->
|
|
</td>
|
|
</tr>
|
|
|
|
<!--@end-->
|
|
<tr>
|
|
<td><input name="title" type="text" class="inputTypeText fixWidth" /></td>
|
|
<td class="center"><input type="checkbox" name="is_default" value="Y" /></td>
|
|
<td><input type="submit" value="{$lang->cmd_registration}" class="btnSubmit" accesskey="s"/></td>
|
|
</tbody>
|
|
</table>
|
|
</form>
|