1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
{% 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 %}