This commit is contained in:
Tykayn 2025-02-14 14:25:23 +01:00 committed by tykayn
parent b373892ddc
commit c44ac9c522
25 changed files with 485 additions and 26 deletions

View file

@ -12,6 +12,10 @@
<th>Name</th>
<th>Date_start</th>
<th>Date_end</th>
<th>FraisInscription</th>
<th>FondDeCaisseAvant</th>
<th>FondDeCaisseApres</th>
<th>DateCreation</th>
<th>actions</th>
</tr>
</thead>
@ -22,6 +26,10 @@
<td>{{ festival.name }}</td>
<td>{{ festival.dateStart ? festival.dateStart|date('Y-m-d') : '' }}</td>
<td>{{ festival.dateEnd ? festival.dateEnd|date('Y-m-d') : '' }}</td>
<td>{{ festival.fraisInscription }}</td>
<td>{{ festival.fondDeCaisseAvant }}</td>
<td>{{ festival.fondDeCaisseApres }}</td>
<td>{{ festival.dateCreation ? festival.dateCreation|date('Y-m-d') : '' }}</td>
<td>
<a href="{{ path('app_festival_show', {'id': festival.id}) }}">show</a>
<a href="{{ path('app_festival_edit', {'id': festival.id}) }}">edit</a>
@ -29,7 +37,7 @@
</tr>
{% else %}
<tr>
<td colspan="5">no records found</td>
<td colspan="9">no records found</td>
</tr>
{% endfor %}
</tbody>

View file

@ -23,6 +23,22 @@
<th>Date_end</th>
<td>{{ festival.dateEnd ? festival.dateEnd|date('Y-m-d') : '' }}</td>
</tr>
<tr>
<th>FraisInscription</th>
<td>{{ festival.fraisInscription }}</td>
</tr>
<tr>
<th>FondDeCaisseAvant</th>
<td>{{ festival.fondDeCaisseAvant }}</td>
</tr>
<tr>
<th>FondDeCaisseApres</th>
<td>{{ festival.fondDeCaisseApres }}</td>
</tr>
<tr>
<th>DateCreation</th>
<td>{{ festival.dateCreation ? festival.dateCreation|date('Y-m-d') : '' }}</td>
</tr>
</tbody>
</table>