mirror of
https://forge.chapril.org/tykayn/caisse-bliss
synced 2025-06-20 01:44:42 +02:00
up cruds
This commit is contained in:
parent
b373892ddc
commit
c44ac9c522
25 changed files with 485 additions and 26 deletions
37
templates/serie_festival/index.html.twig
Normal file
37
templates/serie_festival/index.html.twig
Normal file
|
@ -0,0 +1,37 @@
|
|||
{% extends 'base.html.twig' %}
|
||||
|
||||
{% block title %}SerieFestival index{% endblock %}
|
||||
|
||||
{% block body %}
|
||||
<h1>SerieFestival index</h1>
|
||||
|
||||
<table class="table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Id</th>
|
||||
<th>Name</th>
|
||||
<th>DateCreation</th>
|
||||
<th>actions</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{% for serie_festival in serie_festivals %}
|
||||
<tr>
|
||||
<td>{{ serie_festival.id }}</td>
|
||||
<td>{{ serie_festival.name }}</td>
|
||||
<td>{{ serie_festival.dateCreation ? serie_festival.dateCreation|date('Y-m-d') : '' }}</td>
|
||||
<td>
|
||||
<a href="{{ path('app_serie_festival_show', {'id': serie_festival.id}) }}">show</a>
|
||||
<a href="{{ path('app_serie_festival_edit', {'id': serie_festival.id}) }}">edit</a>
|
||||
</td>
|
||||
</tr>
|
||||
{% else %}
|
||||
<tr>
|
||||
<td colspan="4">no records found</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<a href="{{ path('app_serie_festival_new') }}">Create new</a>
|
||||
{% endblock %}
|
Loading…
Add table
Add a link
Reference in a new issue