31 lines
731 B
Twig
31 lines
731 B
Twig
|
{% 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 %}
|