rhymix/modules/issuetracker/tpl/modify_component.html

38 lines
1.2 KiB
HTML

<!--#include("header.html")-->
<!--%import("css/issuetracker.css")-->
<!--%import("filter/insert_component.xml")-->
<!--@if($component)-->
<form action="{Context::getRequestUri()}" method="post" onsubmit="return procFilter(this, insert_component)">
<input type="hidden" name="module_srl" value="{$module_srl}" />
<input type="hidden" name="component_srl" value="{$component->component_srl}" />
<!--@if($component->is_default=="Y")--><input type="hidden" name="is_default" value="Y" /><!--@end-->
<table cellspacing="0" class="adminTable">
<thead>
<tr>
<th scope="col" class="wide"><div>{$lang->name}</div></th>
<th scope="col"><div>{$lang->is_default}</div></th>
<th scope="col"><div>&nbsp;</div></th>
</tr>
</thead>
<tbody>
<tr>
<td><input name="title" type="text" class="inputTypeText w400" value="{$component->title}" /></td>
<td>
<!--@if($component->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-->