models.py: $(class) je potřeba u abstraktní třídy v related name.

This commit is contained in:
Anet 2019-11-07 20:24:44 +01:00
parent 171d1f8f37
commit 910e34a515

View file

@ -607,7 +607,7 @@ class Problem(SeminarModelBase,PolymorphicModel):
# Problém má podproblémy # Problém má podproblémy
nadproblem = models.ForeignKey('self', verbose_name='nadřazený problém', nadproblem = models.ForeignKey('self', verbose_name='nadřazený problém',
related_name='podproblem', null=True, blank=True, related_name='podproblem_%(class)s', null=True, blank=True,
on_delete=models.SET_NULL) on_delete=models.SET_NULL)
STAV_NAVRH = 'navrh' STAV_NAVRH = 'navrh'