35 lines
1.1 KiB
Smarty
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öschen" onclick="return confirm('Möchten sie lö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 -->
|