services.html
293 Bytes
{% extends "base_page.html" %}
{% block content %}
<table class="table table-hover">
<thead>
<tr>
<th scope="col">Service</th>
</tr>
</thead>
<tbody>
{% for service in services %}
<tr>
<td>{{ service.name }}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endblock %}