Compare commits
No commits in common. "baaaa0829a5abd376c5f373ac2ec0bc0f9b68749" and "205aa0b900cf3fe9fb80cbc001ccfcb544860bb1" have entirely different histories.
baaaa0829a
...
205aa0b900
2 changed files with 3 additions and 3 deletions
|
@ -11,7 +11,7 @@
|
|||
|
||||
<a href="{% url 'logout' %}">Odhlásit se</a><br>
|
||||
<a href="{% url 'seminar_resitel_edit' %}">Upravit údaje</a><br>
|
||||
<a href="{% url 'seminar_nahraj_reseni' %}">Nahrát řešení</a><br>
|
||||
<a href="{% url 'seminar_nahraj_reseni' %}">Nahrátí řešení</a><br>
|
||||
<a href="{% url 'seminar_resitel_odevzdana_reseni' %}">Již odevzdaná řešení</a><br>
|
||||
|
||||
|
||||
|
|
|
@ -35,7 +35,7 @@ from django.conf import settings
|
|||
import unicodedata
|
||||
import logging
|
||||
import time
|
||||
from collections.abc import Sequence
|
||||
from collections.abc import Iterable
|
||||
|
||||
from seminar.utils import aktivniResitele
|
||||
|
||||
|
@ -678,7 +678,7 @@ def StavDatabazeView(request):
|
|||
|
||||
|
||||
# Interní, nemá se nikdy objevit v urls (jinak to účastníci vytrolí)
|
||||
def formularOKView(request, text='', dalsi_odkazy: Sequence[tuple[str, str]] = ()):
|
||||
def formularOKView(request, text='', dalsi_odkazy: Iterable[tuple[str, str]] = ()):
|
||||
template_name = 'seminar/formular_ok.html'
|
||||
odkazy = list(dalsi_odkazy) + [
|
||||
# (Text, odkaz)
|
||||
|
|
Loading…
Reference in a new issue