mirror of
https://forge.chapril.org/tykayn/caisse-bliss
synced 2025-11-19 23:00:37 +01:00
up cruds
This commit is contained in:
parent
b373892ddc
commit
c44ac9c522
25 changed files with 485 additions and 26 deletions
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue