15 lines
530 B
HTML
15 lines
530 B
HTML
<div class="divContent">
|
|
<h2>Gruppe</h2>
|
|
<div class="divLine"> </div>
|
|
<table cellpadding="0" cellspacing="0">
|
|
<tr>
|
|
<th>Name</th>
|
|
<td>
|
|
<input type="text" name="group{ID}" value="{NAME}" class="inputText" onchange="unsave();" />
|
|
<input type="submit" name="save{ID}" value="speichern" onclick="setAction('saveGroup',{ID});" />
|
|
<input type="submit" name="remove{ID}" value="entfernen" onclick="setAction('removeGroup',{ID});" />
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
<div class="divSeparator"> </div> |