31 lines
839 B
Twig
31 lines
839 B
Twig
![]() |
{% extends 'base.html.twig' %}
|
||
|
|
||
|
{% block title %}SerieFestival{% endblock %}
|
||
|
|
||
|
{% block body %}
|
||
|
<h1>SerieFestival</h1>
|
||
|
|
||
|
<table class="table">
|
||
|
<tbody>
|
||
|
<tr>
|
||
|
<th>Id</th>
|
||
|
<td>{{ serie_festival.id }}</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<th>Name</th>
|
||
|
<td>{{ serie_festival.name }}</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<th>DateCreation</th>
|
||
|
<td>{{ serie_festival.dateCreation ? serie_festival.dateCreation|date('Y-m-d') : '' }}</td>
|
||
|
</tr>
|
||
|
</tbody>
|
||
|
</table>
|
||
|
|
||
|
<a href="{{ path('app_serie_festival_index') }}">back to list</a>
|
||
|
|
||
|
<a href="{{ path('app_serie_festival_edit', {'id': serie_festival.id}) }}">edit</a>
|
||
|
|
||
|
{{ include('serie_festival/_delete_form.html.twig') }}
|
||
|
{% endblock %}
|