Web M&M
https://mam.matfyz.cz
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
382 B
17 lines
382 B
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<div>
|
|
<h2>Aktuální zadání</h2>
|
|
|
|
{% for problem in nastaveni.aktualni_cislo.zadane_problemy.all %}
|
|
Problém {{problem}} <br>
|
|
{% autoescape off %}{{problem.text_problemu}}{% endautoescape %}
|
|
<hr>
|
|
{% empty %}
|
|
Aktuálně nejsou zadané žádné úlohy k řešení.
|
|
{% endfor %}
|
|
|
|
</div>
|
|
{% endblock content %}
|
|
|
|
|