diff options
author | Timotej Lazar <timotej.lazar@fri.uni-lj.si> | 2019-02-24 21:05:27 +0100 |
---|---|---|
committer | Timotej Lazar <timotej.lazar@fri.uni-lj.si> | 2019-02-24 21:05:27 +0100 |
commit | 8081a5520a441b43a8a7a73f3a90c7aacfaa8e10 (patch) | |
tree | c7f49bd33ed19d53afc0ee9df8b2c82c200c5910 /web/kpov_judge/templates/index.html | |
parent | 9963b74f777edf985540eac71b1ca095f88b8bca (diff) |
Move everything one level up
Diffstat (limited to 'web/kpov_judge/templates/index.html')
-rw-r--r-- | web/kpov_judge/templates/index.html | 16 |
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> |