Reputation: 379
I want to access kwargs with their names in url from "django template tags". for example i have a url as below:
path('sample_view/<slug:my_custom_slug>/', views.sample_view.as_view(), name='sample_view')
what should I write in my html template to access "my_custom_slug"?
Upvotes: 0
Views: 117