summaryrefslogtreecommitdiff
path: root/kpov_judge/web/kpov_judge/templates/index.html
blob: 49895b09b541799aea26759a31903b9108a88dd4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<html>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">

<h1>KPOV Judge</h1>

<p>
Zdravo, {{student_id}}.

<p>
Trenutno so na voljo predmeti:

<ul>
{% for c in classes %}
<li><a href="{{url_for('class_tasks', class_id=c.class_id)}}">{{c.name}}</a></li>
{% endfor %}
</ul>
</li>