You're missing the converter type in your url, try these: path('post/<str:slug>/', post, name='post')
path('post/<str:slug>/', post, name='post')
path('post/<slug:slug>/', post, name='post')