summaryrefslogtreecommitdiff
path: root/kpov_judge/web/kpov_judge/templates/class_tasks.html
blob: 4b6a52347741dd48eba2ad279c355bb75fadca46 (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><a href="{{ url_for('index') }}" class="back">↩</a> {{clas.name}}</h1>

<p>
{{ _('Zdravo, %(student)s.', student=student_id) }}

<section>
<h1>{{ _('Naloge') }}</h1>

<ul>
{% for t in tasks %}
  <li><a href="{{url_for('task_lang_redirect', class_id=clas.class_id, task_id=t)}}">{{t}}</a>
{% endfor %}
</ul>