Subversion Repositories general

Rev

Rev 1385 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1385 dev 1
<form method="POST" action="telbook_categories_update.php">
1381 dev 2
<input type=hidden name=id value="${CATEGORY_ID}">
3
<table class="telbook edit">
4
	<tr>
5
		<th>Name</th>
6
		<td><input type=text name=category_name value="${CATEGORY_NAME}"></td>
7
	</tr>
8
	<tr>
9
		<th>Comment</th>
10
		<td><textarea name=category_comment>${CATEGORY_COMMENT}</textarea></td>
11
	</tr>
12
	<tr>
13
		<th>Export Key</th>
14
		<td><input type=text name=category_export_key value="${CATEGORY_EXPORT_KEY}"></td>
15
	</tr>
16
	<tr class="buttons">
17
		<td colspan=2>
18
			<input type=reset name="reset" value="Reset">
19
			<input type=submit name=update value="Update">
20
			<input type=submit name=delete value="Delete">
21
		</td>
22
	</tr>
23
</table>
24
</form>
25