mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 00:39:57 +09:00
2. 1번에 의해 ui.datepicker, ui.tree를 플러그인으로 빼서 적용 3. jquery의 버전별 이름이 생길 문제를 대비하여 jquery.js로 파일 이름 변경 4. js/css파일들은 크기보다 그 개수가 적어야 함으로 jquery-1.2.6.fix.js를 common.js 파일로 통합 git-svn-id: http://xe-core.googlecode.com/svn/sandbox@5083 201d5d3c-b55e-5fd7-737f-ddc643e51545
177 lines
8.2 KiB
HTML
177 lines
8.2 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")-->
|
|
|
|
<!--// datepicker javascript plugin load -->
|
|
<!--%load_js_plugin("ui.datepicker")-->
|
|
|
|
<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" />
|
|
<input type="text" class="inputDate" value="" readonly="readonly" />
|
|
<script type="text/javascript">
|
|
(function($){
|
|
$(function(){
|
|
var option = { gotoCurrent: false,yearRange:'-100:+10', onSelect:function(){
|
|
|
|
$(this).prev('input[type="hidden"]').val(this.value.replace(/-/g,""))}
|
|
};
|
|
$.extend(option,$.datepicker.regional['{$lang_type}']);
|
|
$(".inputDate").datepicker(option);
|
|
});
|
|
})(jQuery);
|
|
</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>
|