52 lines
1.5 KiB
HTML
52 lines
1.5 KiB
HTML
<!-- page metadata -->
|
|
<div class="divContent">
|
|
<h2>Personenliste</h2>
|
|
<div class="divLine"> </div>
|
|
<table cellpadding="0" cellspacing="0">
|
|
<!-- BEGINBLOCK ERROR -->
|
|
<tr>
|
|
<th><div class="error">Fehler</div></th>
|
|
<td><div class="error">{ERRORMESSAGE}</div></td>
|
|
</tr>
|
|
<!-- ENDBLOCK ERROR -->
|
|
<tr>
|
|
<th>Titel</th>
|
|
<td><input type="text" name="personpage_title" value="{TITLE}" class="formText" onChange="unsave()" /></td>
|
|
</tr>
|
|
<tr>
|
|
<th>Dateiname</th>
|
|
<td><input type="text" name="personpage_filename" value="{FILENAME}" {FILENAME_DISABLED} maxlength="32" class="formText" onChange="unsave()" /></td>
|
|
</tr>
|
|
<tr>
|
|
<th>HTML-Template</th>
|
|
<td>
|
|
<select name="personpage_template" {TEMPLATE_DISABLED}>
|
|
{TEMPLATES}
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
<!-- BEGINBLOCK ADMIN -->
|
|
<tr>
|
|
<th>Editierbar von</th>
|
|
<td>
|
|
<select name="personpage_editable" onChange="unsave()">
|
|
<option value="3" {EDITABLE3}>Administrator</option>
|
|
<option value="2" {EDITABLE2}>Administrator und Bearbeitern</option>
|
|
<option value="1" {EDITABLE1}>allen Benutzern</option>
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th>Sichtbar für</th>
|
|
<td>
|
|
<select name="personpage_listable" onChange="unsave()">
|
|
<option value="3" {LISTABLE3}>Administrator</option>
|
|
<option value="2" {LISTABLE2}>Administrator und Bearbeiter</option>
|
|
<option value="1" {LISTABLE1}>alle Benutzer</option>
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
<!-- ENDBLOCK ADMIN -->
|
|
</table>
|
|
</div>
|
|
<div class="divSeparator"> </div> |