Files
bm/public_html/public/cms/templates/ticketeventcontainer1.html
2025-09-24 13:26:28 +02:00

35 lines
921 B
HTML

<div class="divContent">
<h2>{NAME}</h2>
<div class="divLine">&nbsp;</div>
<table cellpadding="0" cellspacing="0">
<tr>
<th>Kategorie</th>
<td><select name="category">{CATEGORIES}</select></td>
</tr>
<tr>
<th>Zeitraum</th>
<td><select name="period">{PERIODS}</select></td>
</tr>
<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>
<tr>
<th>Suche</th>
<td>
<input type="text" name="searchTerm" />
<input type="submit" name="container_search" value="suchen" onClick="setAction('search')" />
</td>
</tr>
</table>
</div>
<div class="divSeparator">&nbsp;</div>