Obvody/app/Presentation/Home/default.latte

11 lines
373 B
Plaintext

{* This is the welcome page, you can delete it *}
{block content}
<h3>Seznam obvodů</h3>
<div class="list-group" style="max-width: 200px">
<a n:href=":Obvody:" class="list-group-item list-group-item-action">Všechny obvody</a>
{foreach $obvody as $obvod}
<a n:href=":Obvody: obvod:$obvod" class="list-group-item list-group-item-action">{$obvod}</a>
{/foreach}
</div>