From 1e243496fb3ae59e2f650ac88c4817b8475ccef4 Mon Sep 17 00:00:00 2001 From: moanos Date: Fri, 20 Jun 2025 19:00:28 +0200 Subject: [PATCH] fix: get species urls --- src/fellchensammlung/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fellchensammlung/models.py b/src/fellchensammlung/models.py index 2cc8287..2fed585 100644 --- a/src/fellchensammlung/models.py +++ b/src/fellchensammlung/models.py @@ -196,7 +196,7 @@ class RescueOrganization(models.Model): @property def species_urls(self): - return SpeciesSpecificURL.objects.filter(organization=self) + return SpeciesSpecificURL.objects.filter(rescue_organization=self) @property def has_contact_data(self):