git-svn-id: http://78.47.251.156/svn/dev/sterntours-3@3354 f459cee4-fb09-11de-96c3-f9c5f16c3c76
64 lines
No EOL
2.5 KiB
Twig
64 lines
No EOL
2.5 KiB
Twig
{% extends 'admin.html.twig' %}
|
|
|
|
|
|
{% block body %}
|
|
<section class="clearfix">
|
|
<div class="content-copy">
|
|
<h1>Saisons</h1>
|
|
|
|
<div class="table-responsive" id="no-more-tables">
|
|
<table class="table">
|
|
<thead>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Von</th>
|
|
<th>Bis</th>
|
|
<th></th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% if seasons is not empty %}
|
|
{% for season in seasons %}
|
|
<tr>
|
|
<td>{{ season.name }}</td>
|
|
<td>{{ season.fromDate|date('d.m.y') }}</td>
|
|
<td>{{ season.toDate|date('d.m.y') }}</td>
|
|
<td>
|
|
<a href="{{ '/admin/fewo/seasons/' ~ season.id }}"
|
|
class="btn btn-primary"
|
|
rel="nofollow"
|
|
>
|
|
Bearbeiten
|
|
</a>
|
|
</td>
|
|
<td>
|
|
<a href="{{ '/admin/fewo/seasons/' ~ season.id ~ '/delete' }}"
|
|
class="btn btn-primary"
|
|
rel="nofollow"
|
|
>
|
|
Löschen
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
{% else %}
|
|
<h2>Keine Saisons verfügbar</h2>
|
|
{% endif %}
|
|
<tr>
|
|
<td>
|
|
<a href="/admin/fewo/seasons/new"
|
|
class="btn btn-primary"
|
|
rel="nofollow"
|
|
>
|
|
Hinzufügen
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</section><!-- end section -->
|
|
{% endblock body %} |