HegreEtConfort/templates/vehicle/show.html.twig

31 lines
731 B
Twig
Raw Normal View History

2024-12-20 10:07:22 +01:00
{% extends 'base.html.twig' %}
{% block title %}Vehicle{% endblock %}
{% block body %}
<h1>Vehicle</h1>
<table class="table">
<tbody>
<tr>
<th>Id</th>
<td>{{ vehicle.id }}</td>
</tr>
<tr>
<th>LicensePlate</th>
<td>{{ vehicle.LicensePlate }}</td>
</tr>
<tr>
<th>Brand</th>
<td>{{ vehicle.Brand }}</td>
</tr>
</tbody>
</table>
<a href="{{ path('app_vehicle_index') }}">back to list</a>
<a href="{{ path('app_vehicle_edit', {'id': vehicle.id}) }}">edit</a>
{{ include('vehicle/_delete_form.html.twig') }}
{% endblock %}