From d17c1152615162e33703dd67b92b64d0cbf5b63d Mon Sep 17 00:00:00 2001
From: Alban Gruin
Date: Thu, 19 Jan 2017 21:55:29 +0100
Subject: Travail initial sur les vues

---
 templates/timetable.html | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)
 create mode 100644 templates/timetable.html

(limited to 'templates/timetable.html')

diff --git a/templates/timetable.html b/templates/timetable.html
new file mode 100644
index 0000000..23de166
--- /dev/null
+++ b/templates/timetable.html
@@ -0,0 +1,16 @@
+<!DOCTYPE html>
+<html lang="fr">
+  <head>
+    <meta charset="utf-8" />
+    <title>{{ timetable.name }} &ndash; {{ group.name }} &ndash; celcatsanitizer</title>
+  </head>
+  <body>
+    <h1>celcatsanitizer</h1>
+    <h3>{{ timetable.name }} &ndash; {{ group.name }}</h3>
+    <ul>
+      {% for course in courses %}
+      <li>{{ course.name }}</li>
+      {% endfor %}
+    </ul>
+  </body>
+</html>
-- 
cgit v1.2.1