mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 00:39:57 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@5785 201d5d3c-b55e-5fd7-737f-ddc643e51545
27 lines
984 B
HTML
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>
|