summaryrefslogtreecommitdiff
path: root/web/kpov_judge/templates/index.html
blob: 4c2ba47453e11b5097796c5e3cbc8846c7f51370 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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>