rhymix/modules/issuetracker/tpl/modify_package.html
2009-03-06 05:33:56 +00:00

27 lines
984 B
HTML

<!--#include("header.html")-->
<!--%import("css/issuetracker.css")-->
<!--%import("filter/insert_package.xml")-->
<form action="{Context::getRequestUri()}" method="post" onsubmit="return procFilter(this, insert_package)">
<input type="hidden" name="module_srl" value="{$module_srl}" />
<input type="hidden" name="package_srl" value="{$package->package_srl}" />
<table cellspacing="0" class="rowTable">
<thead>
<tr>
<th><div>{$lang->name}</div></th>
<td class="wide"><input name="title" type="text" value="{htmlspecialchars($package->title)}" class="inputTypeText fullWidth" /></td>
</tr>
<tr>
<th><div>{$lang->description}</div></th>
<td><textarea name="description" class="inputTypeTextArea fullWidth" />{htmlspecialchars($package->description)}</textarea></td>
</tr>
<tr>
<th colspan="2" class="button">
<span class="button black strong"><input type="submit" value="{$lang->cmd_registration}" accesskey="s" /></span>
</th>
</tr>
</table>
</form>