diff
ignore whitespace
commit ab2e154ed38d7983eb18938aa4111fb52ac28497Author: Colin Powell <colin@unbl.ink>Date: Fri Jul 17 10:35:20 2026 -0400 [nature] Fix template and url pathsdiff --git a/vrobbler/apps/nature/models.py b/vrobbler/apps/nature/models.pyindex 654808a..471ce1a 100644--- a/vrobbler/apps/nature/models.py+++ b/vrobbler/apps/nature/models.py@@ -51,7 +51,7 @@ class SpeciesObservation(ScrobblableMixin): return self.title or str(self.uuid) def get_absolute_url(self):- return reverse("nature:species_detail", kwargs={"slug": self.uuid})+ return reverse("nature:species_observation_detail", kwargs={"slug": self.uuid}) @property def subtitle(self):diff --git a/vrobbler/templates/nature/species_observation_detail.html b/vrobbler/templates/nature/speciesobservation_detail.htmlsimilarity index 100%rename from vrobbler/templates/nature/species_observation_detail.htmlrename to vrobbler/templates/nature/speciesobservation_detail.htmldiff --git a/vrobbler/templates/nature/species_observation_list.html b/vrobbler/templates/nature/speciesobservation_list.htmlsimilarity index 100%rename from vrobbler/templates/nature/species_observation_list.htmlrename to vrobbler/templates/nature/speciesobservation_list.html