|
|
@ -543,19 +543,25 @@ class RocnikView(generic.DetailView): |
|
|
|
class ProblemView(generic.DetailView): |
|
|
|
model = Problem |
|
|
|
|
|
|
|
def _je_clanek(self, problem): |
|
|
|
return problem.typ in [Problem.TYP_ORG_CLANEK, Problem.TYP_RES_CLANEK] |
|
|
|
|
|
|
|
# Používáme funkci, protože přímo template_name neumí mít v přiřazení dost logiky. Ledaže by se to udělalo polymorfně... |
|
|
|
def get_template_names(self, **kwargs): |
|
|
|
context = super(ProblemView, self).get_context_data(**kwargs) |
|
|
|
return ['seminar/archiv/problem_' + ('clanek.html' if self._je_clanek(context['problem']) else 'uloha_tema.html')] |
|
|
|
# FIXME: Switch podle typu není hezký, ale nechtělo se mi to přepisovat celé. Správně by se tohle mělo řešit polymorfismem. |
|
|
|
spravne_templaty = { |
|
|
|
s.Uloha: "uloha", |
|
|
|
s.Tema: "tema", |
|
|
|
s.Konfera: "konfera", |
|
|
|
s.Clanek: "clanek", |
|
|
|
} |
|
|
|
context = super().get_context_data(**kwargs) |
|
|
|
return ['seminar/archiv/problem_' + spravne_templaty[context['object'].__class__] + '.html'] |
|
|
|
|
|
|
|
def get_context_data(self, **kwargs): |
|
|
|
context = super(ProblemView, self).get_context_data(**kwargs) |
|
|
|
if not context['problem'].verejne() and not self.request.user.is_staff: |
|
|
|
context = super().get_context_data(**kwargs) |
|
|
|
# Musí se používat context['object'], protože nevíme, jestli dostaneme úložku, téma, článek, .... a tyhle věci vyrábějí různé klíče. |
|
|
|
if not context['object'].verejne() and not self.request.user.is_staff: |
|
|
|
raise PermissionDenied() |
|
|
|
if context['problem'].typ == Problem.TYP_RES_CLANEK: |
|
|
|
context['reseni'] = Reseni.objects.filter(problem=context['problem']).select_related('resitel').order_by('resitel__prijmeni') |
|
|
|
if isinstance(context['object'], Clanek): |
|
|
|
context['reseni'] = Reseni.objects.filter(problem=context['object']).select_related('resitel').order_by('resitel__prijmeni') |
|
|
|
return context |
|
|
|
|
|
|
|
|
|
|
|