mirror of
https://forge.chapril.org/tykayn/caisse-bliss
synced 2025-06-20 01:44:42 +02:00
mass import ok, liens entre série et festival CRUD ok
This commit is contained in:
parent
e973573fd7
commit
b79fc2ac9f
8 changed files with 152 additions and 79 deletions
|
@ -11,6 +11,7 @@
|
|||
<th>Id</th>
|
||||
<th>Name</th>
|
||||
<th>DateCreation</th>
|
||||
<th>Nombre de festivals</th>
|
||||
<th>actions</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
@ -20,6 +21,7 @@
|
|||
<td>{{ serie_festival.id }}</td>
|
||||
<td>{{ serie_festival.name }}</td>
|
||||
<td>{{ serie_festival.dateCreation ? serie_festival.dateCreation|date('Y-m-d') : '' }}</td>
|
||||
<td>{{ serie_festival.festivals|length }}</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>
|
||||
|
@ -27,7 +29,7 @@
|
|||
</tr>
|
||||
{% else %}
|
||||
<tr>
|
||||
<td colspan="4">no records found</td>
|
||||
<td colspan="5">Aucun enregistrement trouvé</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue