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.
21 lines
395 B
21 lines
395 B
{% extends "base.html" %}
|
|
{% load static %}
|
|
|
|
{% block content %}
|
|
<h1>
|
|
{% block nadpis1a %}
|
|
Nahrát řešení
|
|
{% endblock %}
|
|
</h1>
|
|
|
|
<h4>Seznam témat k odevzdání</h4>
|
|
|
|
<ul>
|
|
{% for problem in object_list %}
|
|
<li><a href="{% url 'odevzdavatko_nahraj_reseni' problem.id %}">{{ problem }}</a></li>
|
|
{% empty %}
|
|
<li>Nelze nic odevzdávat.</li>
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
{% endblock %}
|
|
|