2021-02-18 19:13:14 +00:00
|
|
|
{% extends 'base.html.twig' %}
|
|
|
|
|
2021-02-18 22:05:41 +00:00
|
|
|
{% block title %}{{'Beer'}}{% endblock %}
|
2021-02-18 19:13:14 +00:00
|
|
|
|
|
|
|
{% block body %}
|
2021-02-18 22:05:41 +00:00
|
|
|
<div class="container">
|
|
|
|
|
|
|
|
<h1 class="display-1">{{'Beer'}}</h1>
|
2021-02-18 19:13:14 +00:00
|
|
|
|
|
|
|
<table class="table">
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
2021-02-18 22:05:41 +00:00
|
|
|
<th scope="row">{{'Id'}}</th>
|
2021-02-18 19:13:14 +00:00
|
|
|
<td>{{ beer.id }}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2021-02-18 22:05:41 +00:00
|
|
|
<th scope="row">{{'Name'}}</th>
|
2021-02-18 19:13:14 +00:00
|
|
|
<td>{{ beer.name }}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2021-02-18 22:05:41 +00:00
|
|
|
<th scope="row">{{'Alcool'}}</th>
|
2021-02-18 19:13:14 +00:00
|
|
|
<td>{{ beer.alcool }}</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
|
2021-02-18 22:05:41 +00:00
|
|
|
<a href="{{ path('beer_index') }}" class="btn btn-secondary" role="button">
|
|
|
|
<i class="fa fa-arrow-left fa-fw"></i> {{'back to list'}}
|
|
|
|
</a>
|
2021-02-18 19:13:14 +00:00
|
|
|
|
2021-02-18 22:05:41 +00:00
|
|
|
<a href="{{ path('beer_edit', {'id': beer.id}) }}" class="btn btn-warning" role="button">
|
|
|
|
<i class="fa fa-pencil fa-fw"></i> {{'edit'}}
|
|
|
|
</a>
|
2021-02-18 19:13:14 +00:00
|
|
|
|
|
|
|
{{ include('beer/_delete_form.html.twig') }}
|
2021-02-18 22:05:41 +00:00
|
|
|
</div>
|
2021-02-18 19:13:14 +00:00
|
|
|
{% endblock %}
|