[Fixed]-Django error: Reverse for 'details' with arguments '()' and keyword arguments

1👍

You need to include the namespace when referencing the url

return reverse('portfolio:details', kwargs={"slug": self.slug})
👤Sayse

Leave a comment