1
|
<!-- BEGIN main_block -->
|
2
|
|
3
|
<br />
|
4
|
|
5
|
</div>
|
6
|
<div class="{DISPLAY_ADD}">
|
7
|
|
8
|
<h2>{HEADING_ADD_PAGE}</h2>
|
9
|
|
10
|
<form name="add" action="add.php" method="post">
|
11
|
|
12
|
<table cellpadding="2" cellspacing="0" border="0" width="100%" align="center">
|
13
|
<tr>
|
14
|
<td width="70" height="20">{TEXT_TITLE}:</td>
|
15
|
<td with="240" height="20">
|
16
|
<input type="text" name="title" style="width: 232px;" />
|
17
|
</td>
|
18
|
<td rowspan="6" valign="top" style="padding-left: 20px; padding-top: 8px;">
|
19
|
{TEXT_ADMINISTRATORS}:
|
20
|
<ul style="list-style-type: none; margin: 0; padding: 0;">
|
21
|
<!-- BEGIN group_list_block -->
|
22
|
<li>
|
23
|
<input type="checkbox" name="admin_groups[]" id="admin_group_{ID}" value="{ID}"{CHECKED}{DISABLED} />
|
24
|
<label for="admin_group_{TOGGLE}">{NAME}</label>
|
25
|
</li>
|
26
|
<!-- END group_list_block -->
|
27
|
</ul>
|
28
|
</td>
|
29
|
<td rowspan="6" valign="top" style="padding-left: 20px; padding-top: 8px;">
|
30
|
<div id="viewers" style="display: none;">
|
31
|
{TEXT_REGISTERED_VIEWERS}:
|
32
|
<ul style="list-style-type: none; margin: 0; padding: 0;">
|
33
|
<!-- BEGIN group_list_block2 -->
|
34
|
<li>
|
35
|
<input type="checkbox" name="viewing_groups[]" id="viewing_group_{ID}" value="{ID}"{CHECKED}{DISABLED} />
|
36
|
<label for="viewing_group_{TOGGLE}">{NAME}</label>
|
37
|
</li>
|
38
|
<!-- END group_list_block2 -->
|
39
|
</ul>
|
40
|
</div>
|
41
|
</td>
|
42
|
</tr>
|
43
|
<tr height="20">
|
44
|
<td width="70">{TEXT_TYPE}:</td>
|
45
|
<td with="240">
|
46
|
<select name="type" style="width: 240px;">
|
47
|
<!-- BEGIN module_list_block -->
|
48
|
<option value="{VALUE}"{SELECTED}>{NAME}</option>
|
49
|
<!-- END module_list_block -->
|
50
|
</select>
|
51
|
</td>
|
52
|
</tr>
|
53
|
<tr height="20">
|
54
|
<td width="70">{TEXT_PARENT}:</td>
|
55
|
<td with="240">
|
56
|
<select name="parent" style="width: 240px;">
|
57
|
<!-- BEGIN page_list_block2 -->
|
58
|
<option value="{ID}"{DISABLED}>{TITLE}</option>
|
59
|
<!-- END page_list_block2 -->
|
60
|
</select>
|
61
|
</td>
|
62
|
</tr>
|
63
|
<tr height="20">
|
64
|
<td width="70">{TEXT_VISIBILITY}:</td>
|
65
|
<td width="240">
|
66
|
<select name="visibility" onchange="javascript: toggle_viewers();" style="width: 240px;">
|
67
|
<option value="public" selected>{TEXT_PUBLIC}</option>
|
68
|
<option value="private">{TEXT_PRIVATE}</option>
|
69
|
<option value="registered">{TEXT_REGISTERED}</option>
|
70
|
<option value="hidden">{TEXT_HIDDEN}</option>
|
71
|
<option value="none">{TEXT_NONE}</option>
|
72
|
</select>
|
73
|
</td>
|
74
|
</tr>
|
75
|
<tr>
|
76
|
<td width="70"> </td>
|
77
|
<td colspan="4">
|
78
|
<input type="submit" name="submit" value="{TEXT_ADD}" style="width: 117px;" />
|
79
|
<input type="reset" name="reset" value="{TEXT_RESET}" style="width: 117px;" />
|
80
|
</td>
|
81
|
</tr>
|
82
|
<tr>
|
83
|
<td> </td>
|
84
|
<td> </td>
|
85
|
</tr>
|
86
|
</table>
|
87
|
|
88
|
</form>
|
89
|
|
90
|
</div>
|
91
|
<div class="{DISPLAY_INTRO}" style="padding-top: 10px;">
|
92
|
|
93
|
<br />
|
94
|
|
95
|
<h2>{HEADING_MODIFY_INTRO_PAGE}</h2>
|
96
|
|
97
|
<a href="intro.php">
|
98
|
{INTRO_LINK}
|
99
|
</a>
|
100
|
|
101
|
</div>
|
102
|
|
103
|
<!-- END main_block -->
|