34 lines
No EOL
1.3 KiB
Smarty
34 lines
No EOL
1.3 KiB
Smarty
<form action="" method="post">
|
|
Name<input type="text" name="name" /> Mail<input type="text" name="mail" /> Handy<input type="text" name="handy" /> <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>Mitarbeiter</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{foreach from=$mitarbeiterlist item=mitarbeiterlist}
|
|
<tr>
|
|
<td><form action="" method="post" >
|
|
<input type="hidden" value="{$mitarbeiterlist.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><a href="?s=a_lohn&a=show&mid={$mitarbeiterlist.id}" title="Kicke zum auswälen" >{$mitarbeiterlist.name}</a></td>
|
|
<td>{$mitarbeiterlist.mail}</td>
|
|
<td>{$mitarbeiterlist.handy}</td>
|
|
</tr>
|
|
{/foreach}
|
|
</tbody>
|
|
</table>
|
|
<div id="upload-bar" class="clearfix">
|
|
</div>
|
|
</section>
|
|
|
|
<!-- End of Left column/section -->
|
|
|
|
|
|
|
|
<!-- Right column/section --> |