I have a url set up dynamically for a project using:
path('project/<int:pk>', ProjectView.as_view(), name='project')
How can I make this so I can use two parameters, something like this:
path('project/<int:pk>/<int:category', ProjectView.as_view(), name='project')
So I need to set up links to each category, so the user will see only the updates from Project A category 1 of 7.
>.