blob: 5436ff22000516274037a6f271c7123900e6d1da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
<!--VTP_confirmation-->
<div style="color:red;text-align:center;">
{#editcat_confirm} [ <a href="{#back_url}">{#editcat_back}</a> ]</div>
<!--/VTP_confirmation-->
<form action="{#form_action}" method="post">
<table style="width:100%;">
<tr>
<th colspan="2">{#editcat_title1} "{#cat:name}" [
<!--VTP_storage-->
dir : {#dir}
<!--/VTP_storage-->
<!--VTP_virtual-->
<span style="color:blue;">{#cat_virtual}</span>
<!--/VTP_virtual-->
]
</th>
</tr>
<!--VTP_server-->
<tr>
<td style="width:20%;">{#remote_site}</td>
<td class="row2">{#url}</td>
</tr>
<!--/VTP_server-->
<tr>
<td style="width:20%;">{#editcat_name}</td>
<td class="row2">
<input type="text" name="name" value="{#name}" maxlength="255"/>
</td>
</tr>
<tr>
<td>{#editcat_comment}</td>
<td class="row2">
<textarea name="comment" rows="5" cols="50" style="overflow:auto">{#comment}</textarea>
</td>
</tr>
<tr>
<td>{#editcat_status}</td>
<td class="row2">
<!--VTP_status_option-->
<input type="radio" name="status" value="{#value}"{#checked} />{#option}
<!--/VTP_status_option-->
</td>
</tr>
<tr>
<td>{#editcat_visible}</td>
<td class="row2">
<!--VTP_visible_option-->
<input type="radio" name="visible" value="{#value}"{#checked} />{#option}
<!--/VTP_visible_option-->
{#editcat_visible_info}
</td>
</tr>
<!--VTP_uploadable-->
<tr>
<td>{#editcat_uploadable}</td>
<td class="row2">
<!--VTP_uploadable_option-->
<input type="radio" name="uploadable" value="{#value}"{#checked} />{#option}
<!--/VTP_uploadable_option-->
</td>
</tr>
<!--/VTP_uploadable-->
<!--VTP_parent-->
<tr>
<td>{#cat_parent}</td>
<td class="row2">
<!--VTP_associate_LOV-->
<select name="associate">
<!--VTP_associate_cat-->
<option value="{#value}">{#content}</option>
<!--/VTP_associate_cat-->
</select>
<!--/VTP_associate_LOV-->
<!--VTP_associate_text-->
<input type="text" name="associate" value="{#value}" />
<!--/VTP_associate_text-->
</td>
</tr>
<!--/VTP_parent-->
<tr>
<td colspan="2"> </td>
</tr>
<tr>
<td colspan="2" align="center">
<input type="submit" name="submit" value="{#submit}" />
</td>
</tr>
</table>
</form>
|