+ status = models.PositiveSmallIntegerField(
+ null=True,
+ blank=True,
+ choices=[
+ (1, _("Alive")),
+ (2, _("Dead")),
+ (3, _("Long dead")),
+ (4, _("Unknown")),
+ ],
+ )
+ notes = models.TextField(blank=True)
+ gazeta_link = models.CharField(max_length=255, blank=True)
+ culturepl_link = models.CharField(max_length=255, blank=True)
+
+ description = models.TextField(blank=True)
+ description_de = models.TextField(blank=True)
+ description_lt = models.TextField(blank=True)
+
+ priority = models.PositiveSmallIntegerField(
+ default=0, choices=[(0, _("Low")), (1, _("Medium")), (2, _("High"))]
+ )
+ collections = models.ManyToManyField("Collection", blank=True)
+
+ class Meta:
+ ordering = ("last_name", "first_name", "year_of_death")
+
+ class Wikidata:
+ first_name = WIKIDATA.GIVEN_NAME
+ last_name = WIKIDATA.LAST_NAME
+ year_of_death = WIKIDATA.DATE_OF_DEATH
+ notes = "description"