diff options
Diffstat (limited to 'templates/index.html')
-rw-r--r-- | templates/index.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..262d454 --- /dev/null +++ b/templates/index.html @@ -0,0 +1,20 @@ +<!DOCTYPE html> +<html lang="fr"> + <head> + <meta charset="utf-8" /> + <title>celcatsanitizer</title> + </head> + <body> + <h1>celcatsanitizer</h1> + {% for timetable in timetables %} + <h3>{{ timetable.name }}</h3> + <ul> + {% for group in groups %} + {% if group.timetable.id == timetable.id %} + <li><a href="{% url "timetable" timetable.slug group.slug %}">{{ group.name }}</a></li> + {% endif %} + {% endfor %} + </ul> + {% endfor %} + </body> +</html> |