refactor: Remove old get abolute URL

This commit is contained in:
2025-06-17 22:46:50 +02:00
parent 671c6ec6f5
commit 2c976f926c
3 changed files with 2 additions and 5 deletions

View File

@@ -162,9 +162,6 @@ class RescueOrganization(models.Model):
def get_absolute_url(self):
return reverse("rescue-organization-detail", args=[str(self.pk)])
def get_absolute_url_bulma(self):
return reverse("bulma-rescue-organization-detail", args=[str(self.pk)])
@property
def adoption_notices(self):
return AdoptionNotice.objects.filter(organization=self)