I am trying to use the slug path to display the content in the post_detail.htm file by using this http://localhost:8000/dashboard/posts/2323. As I press enter to write something after dashboard/ something else, the content in post_detail does not display
# Dashboards
```path('dashboard/', include('dashboards.urls')),
,,,
dashboards app urls.py
```# posts path
path('posts<slug:post_slug>/', views.post_detail, name='post_detail'),
```
dashboards app views.py
```def post_detail(request, slug):
return render(request, 'dashboard/post_detail.html')
```
templates/dashboard/post_detail.html
``<h2> Post body detail</h2>
```