blob: 0b99c7ab6e2b797bd0933435eac2e276802abef9 (
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
|
<h1>{L_GROUP_TITLE}</h1>
<form action="{S_GROUP_ACTION}" method="post"><table border="0" cellpadding="3" cellspacing="1" class="forumline" align="center">
<tr>
<th class="thHead" colspan="2">{L_GROUP_EDIT_DELETE}</th>
</tr>
<tr>
<td class="row1" colspan="2"><span class="gensmall">{L_ITEMS_REQUIRED}</span></td>
</tr>
<tr>
<td class="row1" width="38%"><span class="gen">{L_GROUP_NAME}:</span></td>
<td class="row2" width="62%">
<input type="text" name="group_name" size="35" maxlength="40" value="{GROUP_NAME}" />
</td>
</tr>
<tr>
<td class="row1" width="38%"><span class="gen">{L_GROUP_DESCRIPTION}:</span></td>
<td class="row2" width="62%">
<textarea name="group_description" rows=5 cols=51>{GROUP_DESCRIPTION}</textarea>
</td>
</tr>
<tr>
<td class="row1" width="38%"><span class="gen">{L_GROUP_MODERATOR}:</span></td>
<td class="row2" width="62%">{S_SELECT_MODERATORS}</td>
</tr>
<tr>
<td class="row1" width="38%"><span class="gen">{L_DELETE_MODERATOR}</span>
<br />
<span class="gensmall">{L_DELETE_MODERATOR_EXPLAIN}</span></td>
<td class="row2" width="62%">
<input type="checkbox" name="delete_old_moderator" value="1">
{L_YES}</td>
</tr>
<tr>
<td class="row1" width="38%"><span class="gen">{L_GROUP_STATUS}:</span></td>
<td class="row2" width="62%">
<input type="radio" name="group_type" value="{S_GROUP_OPEN_TYPE}" {S_GROUP_OPEN_CHECKED} /> {L_GROUP_OPEN} <input type="radio" name="group_type" value="{S_GROUP_CLOSED_TYPE}" {S_GROUP_CLOSED_CHECKED} /> {L_GROUP_CLOSED} <input type="radio" name="group_type" value="{S_GROUP_HIDDEN_TYPE}" {S_GROUP_HIDDEN_CHECKED} /> {L_GROUP_HIDDEN}</td>
</tr>
<tr>
<td class="row1" width="38%"><span class="gen">{L_GROUP_DELETE}:</span></td>
<td class="row2" width="62%">
<input type="checkbox" name="group_delete" value="1">
{L_GROUP_DELETE_CHECK}</td>
</tr>
<tr>
<td class="catBottom" colspan="2" align="center"><span class="cattitle">
<input type="submit" name="group_update" value="{L_SUBMIT}" class="mainoption" />
<input type="reset" value="{L_RESET}" name="reset" class="liteoption" />
</span></td>
</tr>
</table>{S_HIDDEN_FIELDS}</form>
|