2π
β
In your get_absolute_url
method, convert the UUID
instance to str
. Something like this should work.
def get_absolute_url(self):
return reverse('suggies:detail_box', args=[str(self.slug)])
π€v1k45
Source:stackexchange.com