1👍
✅
In your models.py change the get_absolute_url
as follow. You need to include the app name also before calling any specific url from an app.
def get_absolute_url(self):
return reverse('blog:post-detail', kwargs={'id': self.id})
Source:stackexchange.com