ACC SHELL
{block content}
<h1 n:block=title>Výpis Nemovitostí</h1>
<table id="data" summary="Nemovitosti" style="width: 100%">
<colgroup>
<col class="first" />
</colgroup>
<thead>
<tr>
<th scope="col">ID</th>
<th scope="col">Název</th>
<th scope="col">Datum vložení</th>
<th scope="col">Smazat</th>
<th scope="col">Editovat</th>
<th scope="col">Přidat obrázek</th>
<th scope="col">Změnit hlavní obrázek</th>
</tr>
</thead>
</tr>
<tbody>
{foreach $nemovitosti as $nemovitost}
<tr>
<td>{$nemovitost->id}</td>
<td><a n:href="Dashboard:detailNemovitost $nemovitost->id">{$nemovitost->nazev}</a></td>
<td>{$nemovitost->datum}</td>
<td><a n:href='deleteNemovitost! $nemovitost->id'><img src='{$basePath}/www/images/Delete.png' alt='smazat' /></a></td>
<td><a n:href='editNemovitosti $nemovitost->id'><img src='{$basePath}/www/images/Edit.png' alt='editovat ' /></a></td>
<td><a n:href='addImage $nemovitost->id'><img src='{$basePath}/www/images/sipka.png' alt='přidat' /></a></td>
<td><a n:href='changeImage $nemovitost->id'><img src='{$basePath}/www/images/sipka.png' alt='změnit' /></a></td>
</tr>
{/foreach}
</tbody>
</table>
ACC SHELL 2018