Stringifikace hlasování o znalostech

This commit is contained in:
Jonas Havelka 2025-01-24 15:51:06 +01:00
parent 6c35a5b6f3
commit bcda95f0b3

View file

@ -96,3 +96,6 @@ class HlasovaniOZnalostech(models.Model):
ucastnik = models.ForeignKey(Osoba, on_delete=models.CASCADE, blank=False, null=False)
seznam = models.ForeignKey(Seznam, on_delete=models.SET_NULL, blank=True, null=True)
def __str__(self):
return f"{self.ucastnik} dal {self.znalost} bodů {self.znalost} v seznamu {self.seznam}"