{% extends 'base.html.twig' %}
{% block title %}Status{% endblock %}
{% block body %}
<h1>Status</h1>
<table class="table">
<tbody>
<tr>
<th>Id</th>
<td>{{ status.id }}</td>
</tr>
<tr>
<th>Name</th>
<td>{{ status.name }}</td>
</tr>
<tr>
<th>B2lId</th>
<td>{{ status.b2lId }}</td>
</tr>
<tr>
<th>Color</th>
<td>{{ status.color }}</td>
</tr>
<tr>
<th>Type</th>
<td>{{ status.type }}</td>
</tr>
</tbody>
</table>
<a href="{{ path('app_status_index') }}">back to list</a>
<a href="{{ path('app_status_edit', {'id': status.id}) }}">edit</a>
{{ include('status/_delete_form.html.twig') }}
{% endblock %}