66 lines
2.3 KiB
Twig
Executable File
66 lines
2.3 KiB
Twig
Executable File
{% extends 'base.html.twig' %}
|
|
|
|
{% block body %}
|
|
<div class="row">
|
|
<div class="col-xs-6">
|
|
<h1>Festivals</h1></div>
|
|
<div class="col-xs-6">
|
|
<a class="btn btn-primary" href="{{ path('festival_new') }}">Nouveau festival</a>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<table class="table-responsive table-striped table table-bordered table-light">
|
|
<thead>
|
|
<tr>
|
|
<th>Id</th>
|
|
<th>Name</th>
|
|
<th>Datecreation</th>
|
|
<th>Clients</th>
|
|
<th>fond caisse avant</th>
|
|
<th>fond caisse apres</th>
|
|
<th>chiffre affaire</th>
|
|
<th>Actions</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for festival in festivals %}
|
|
<tr>
|
|
<td>
|
|
<a class="btn btn-primary"
|
|
href="{{ path('festival_show', { 'id': festival.id }) }}">{{ festival.id }}</a>
|
|
</td>
|
|
<td>{{ festival.name }}</td>
|
|
<td>{% if festival.dateCreation %}{{ festival.dateCreation|date('Y-m-d H:i:s') }}{% endif %}</td>
|
|
|
|
<td>{{ festival.sellRecords|length }}</td>
|
|
<td>{{ festival.fondDeCaisseAvant }}</td>
|
|
<td>{{ festival.fondDeCaisseApres }}</td>
|
|
<td>{{ festival.chiffreAffaire }}</td>
|
|
<td>
|
|
<ul>
|
|
<li>
|
|
<a class="btn btn-success" href="{{ path('set_active_festival', { 'id': festival.id }) }}">
|
|
choisir comme actuel
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a class="btn btn-primary" href="{{ path('festival_show', { 'id': festival.id }) }}">voir
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a class="btn btn-primary" href="{{ path('festival_edit', { 'id': festival.id }) }}">
|
|
<i class="fa fa-pencil"></i>
|
|
Modifier
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
|
|
<a class="btn btn-primary" href="{{ path('festival_new') }}">Nouveau festival</a>
|
|
{% endblock %}
|