Browse Source

komentáře k CisloView

export_seznamu_prednasek
Kateřina Č 4 years ago
parent
commit
b202060742
  1. 2
      seminar/urls.py
  2. 1
      seminar/views/views_all.py

2
seminar/urls.py

@ -20,7 +20,7 @@ urlpatterns = [
path('archiv/temata/', views.ArchivTemataView.as_view()),
path('rocnik/<int:rocnik>/', views.RocnikView.as_view(), name='seminar_rocnik'),
path('cislo/<int:rocnik>.<int:cislo>/', views.CisloView.as_view(), name='seminar_cislo'), # odkomentované jenom kvůli testování archivu
path('cislo/<int:rocnik>.<int:cislo>/', views.CisloView.as_view(), name='seminar_cislo'),
path('problem/<int:pk>/', views.ProblemView.as_view(), name='seminar_problem'),
path('treenode/<int:pk>/', views.TreeNodeView.as_view(), name='seminar_treenode'),
#path('problem/(?P<pk>\d+)/(?P<prispevek>\d+)/', views.PrispevekView.as_view(), name='seminar_problem_prispevek'),

1
seminar/views/views_all.py

@ -795,6 +795,7 @@ def vysledkovka_cisla(cislo, context=None):
return context
class CisloView(generic.DetailView):
# FIXME zobrazování témátek a vůbec, teď je tam jen odkaz na číslo v pdf
model = Cislo
template_name = 'seminar/archiv/cislo.html'

Loading…
Cancel
Save