20 lines
546 B
HTML
20 lines
546 B
HTML
<div class="divContent">
|
|
<h2>{NAME}</h2>
|
|
<div class="divLine"> </div>
|
|
<table cellpadding="0" cellspacing="0">
|
|
<tr>
|
|
<th>Sortierung</th>
|
|
<td>
|
|
<select name="property">
|
|
{PROPERTIES}
|
|
</select>
|
|
<select name="order">
|
|
<option value="ASC" {ORDER_ASC}>aufsteigend</option>
|
|
<option value="DESC" {ORDER_DESC}>absteigend</option>
|
|
</select>
|
|
<input type="submit" name="container_submit" value="sortieren" onClick="setAction('sort')" />
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
<div class="divSeparator"> </div> |