fix: typo

This commit is contained in:
2025-06-20 18:53:09 +02:00
parent 6f5e75a1b3
commit 53bc433aaa
2 changed files with 20 additions and 2 deletions

View File

@@ -987,6 +987,6 @@ class SpeciesSpecificURL(models.Model):
Model that allows to specify a URL for a rescue organization where a certain species can be found
"""
species = models.ForeignKey(Species, on_delete=models.CASCADE, verbose_name=_("Tierart"))
rescues_organization = models.ForeignKey(RescueOrganization, on_delete=models.CASCADE,
verbose_name=_("Tierschutzorganisation"))
rescue_organization = models.ForeignKey(RescueOrganization, on_delete=models.CASCADE,
verbose_name=_("Tierschutzorganisation"))
url = models.URLField(verbose_name=_("Tierartspezifische URL"))