From c11858810ca94ca4b34aa04285e689b287479879 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Thu, 21 May 2026 18:49:39 -0400 Subject: [PATCH] [trails] Fix name --- vrobbler/apps/trails/models.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/vrobbler/apps/trails/models.py b/vrobbler/apps/trails/models.py index 33a5dc9..73b2ffe 100644 --- a/vrobbler/apps/trails/models.py +++ b/vrobbler/apps/trails/models.py @@ -74,6 +74,9 @@ class Trail(ScrobblableMixin): max_length=10, choices=ActivityType.choices, **BNULL ) + def __str__(self): + return self.title + def get_absolute_url(self): return reverse("trails:trail_detail", kwargs={"slug": self.uuid})