Add groups template

This commit is contained in:
Mikkel
2022-05-24 15:45:56 +02:00
parent 4122fb57aa
commit 542dcc05b0
2 changed files with 8 additions and 5 deletions

View File

@ -0,0 +1,6 @@
{% extends "layout.html" %}
{% block content %}
{% for group in groups %}
<p>{{ group.name }}</p>
{% endfor %}
{% endblock content %}