hegresphere/templates/degree/show.html.twig
2024-11-21 17:04:56 +01:00

27 lines
598 B
Twig

{% extends 'base.html.twig' %}
{% block title %}Degree{% endblock %}
{% block body %}
<h1>Degree</h1>
<table class="table">
<tbody>
<tr>
<th>Id</th>
<td>{{ degree.id }}</td>
</tr>
<tr>
<th>Label</th>
<td>{{ degree.label }}</td>
</tr>
</tbody>
</table>
<a href="{{ path('app_degree_index') }}">back to list</a>
<a href="{{ path('app_degree_edit', {'id': degree.id}) }}">edit</a>
{{ include('degree/_delete_form.html.twig') }}
{% endblock %}