jb-data.de/template/tpl/fahrzeug_list.tpl
2025-08-11 22:23:30 +02:00

35 lines
1.1 KiB
Smarty

<!-- Left column/section -->
<form action="" method="post">
Neues Fahrzeug: <input type="text" name="fahrzeug" /> <input type="submit" name="add" value="Add" />
</form>
<section class="grid_6 first top">
<table class="datatable paginate full profilelist" id="peoplelist">
<thead>
<tr>
<th></th>
<th colspan=3>Fahrzeuge</th>
</tr>
</thead>
<tbody>
{foreach from=$fahrzeugliste item=fahrzeugliste}
<tr>
<td><form action="" method="post" >
<input type="hidden" value="{$fahrzeugliste.id}" name="delete" />
<input type="image" name="delete" src="template/images/icon/bomb.png" alt="bomb" title="l&ouml;schen" onclick="return confirm('M&ouml;chten sie l&ouml;schen ?')" />
</form></td>
<td>{$fahrzeugliste.kz}</td>
</tr>
{/foreach}
</tbody>
</table>
<div id="upload-bar" class="clearfix">
</div>
</section>
<!-- End of Left column/section -->
<!-- Right column/section -->