hegresphere/templates/degree/show.html.twig
2024-12-05 16:56:04 +01:00

38 lines
1.3 KiB
Twig

{% extends 'base.html.twig' %}
{% block title %}Degrees{% endblock %}
{% block body %}
<h1>List of Degrees</h1>
<table class="table">
<thead>
<tr>
<th>Id</th>
<th>Label</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
{% for degree in degrees %}
<tr>
<td>{{ degree.id }}</td>
<td>{{ degree.label }}</td>
<td>
<a href="{{ path('app_degree_show', {'id': degree.id}) }}" class="btn btn-info">View</a>
<a href="{{ path('app_degree_edit', {'id': degree.id}) }}" class="btn btn-warning">Edit</a>
<!-- Form for deleting a degree -->
<form method="post" action="{{ path('app_degree_delete', {'id': degree.id}) }}" style="display:inline;">
<input type="hidden" name="_method" value="DELETE">
<input type="hidden" name="_token" value="{{ csrf_token('delete' ~ degree.id) }}">
<button class="btn btn-danger" type="submit">Delete</button>
</form>
</td>
</tr>
{% endfor %}
</tbody>
</table>
<a href="{{ path('app_degree_new') }}" class="btn btn-success">Add New Degree</a>
{% endblock %}