summaryrefslogtreecommitdiff
path: root/kpov_judge/web/kpov_judge/templates/class_tasks.html
blob: 050874b05728d95d648242db22e9ce8c36e2d77f (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_id}}.

<p>
Trenutno so na voljo naloge:

<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>