summaryrefslogtreecommitdiff
path: root/web/kpov_judge/templates/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'web/kpov_judge/templates/index.html')
-rw-r--r--web/kpov_judge/templates/index.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/web/kpov_judge/templates/index.html b/web/kpov_judge/templates/index.html
new file mode 100644
index 0000000..4c2ba47
--- /dev/null
+++ b/web/kpov_judge/templates/index.html
@@ -0,0 +1,16 @@
+<html>
+<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
+
+<h1>KPOV Judge</h1>
+
+<p>
+{{ _('Zdravo, %(student)s.', student=student_id) }}
+
+<section>
+<h1>{{ _('Predmeti') }}</h1>
+
+<ul>
+{% for c in classes %}
+ <li><a href="{{url_for('class_tasks', class_id=c.class_id)}}">{{c.name}}</a>
+{% endfor %}
+</ul>