{% extends "base.html" %} {% load widgets %} {% block title %}{{ task_set.title }}{% endblock %} {% block content %} {% if task_set.public|is_false %}
{% endif %} {% include 'tasks/task_set_header.html' %}
{% for cat in categories %} {% if cat.tasks %}

{% if cat.type == 'act_sub' %}  Aktuálne úlohy {% elif cat.type == 'act_read' %}  Neprečítané texty {% elif cat.type == 'sol_sub' %}  Vyriešené úlohy {% elif cat.type == 'sol_read' %}  Prečítané texy {% endif %} ({{ cat.tasks|length }})

{% if cat.type == 'act_sub' or cat.type == 'sol_sub' %} {% elif cat.type == 'act_read' or cat.type == 'sol_read' %} {% endif %} {% for task in cat.tasks %} {% if cat.type == 'act_sub' or cat.type == 'sol_sub' %} {% endif %} {% endfor %}
ÚlohaVyriešiloText
{{ task.title }}{{ task.num_solvers }}
{% endif %} {% endfor %}
{% if task_set.public|is_false %}
{% endif %} {% endblock content %}