feat: Allow excluding rescue org from checking

This commit is contained in:
2025-06-19 23:33:48 +02:00
parent 1307b2ff7b
commit a302a36fd4
3 changed files with 22 additions and 1 deletions

View File

@@ -150,6 +150,9 @@ class RescueOrganization(models.Model):
external_source_identifier = models.CharField(max_length=200, null=True, blank=True,
choices=ExternalSourceChoices.choices,
verbose_name=_('External Source Identifier'))
exclude_from_check = models.BooleanField(default=False, verbose_name=_('Von Prüfung ausschließen'),
help_text=_("Organisation von der manuellen Überprüfung ausschließen, "
"z.B. weil Tiere nicht online geführt werden"))
class Meta:
unique_together = ('external_object_identifier', 'external_source_identifier',)