35 lines
957 B
Twig
35 lines
957 B
Twig
|
{% extends 'base.html.twig' %}
|
||
|
|
||
|
{% block title %}Representation{% endblock %}
|
||
|
|
||
|
{% block body %}
|
||
|
<h1>Representation</h1>
|
||
|
|
||
|
<table class="table">
|
||
|
<tbody>
|
||
|
<tr>
|
||
|
<th>Employee</th>
|
||
|
<td>{{ representation.employee }}</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<th>Ride</th>
|
||
|
<td>{{ representation.ride }}</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<th>Count</th>
|
||
|
<td>{{ representation.count }}</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<th>Date</th>
|
||
|
<td>{{ representation.date ? representation.date|date('Y-m-d H:i:s') : '' }}</td>
|
||
|
</tr>
|
||
|
</tbody>
|
||
|
</table>
|
||
|
|
||
|
<a href="{{ path('representation_index') }}">back to list</a>
|
||
|
|
||
|
<a href="{{ path('representation_edit', {'employee': representation.employee}) }}">edit</a>
|
||
|
|
||
|
{{ include('representation/_delete_form.html.twig') }}
|
||
|
{% endblock %}
|