In the Django urls I need an optional named group. This conf without arguments raised an 404 exception:
r'^list_cv/(?P<category>[\d]+)?/$'
How to make optional named group?
|
|
The last slash should be part of the optional RE, and the RE should be like
I didn't test it, though. |
|||||
|
|
I find that it's more legible to create a separate url pattern for the url without the named group.
|
|||
|
|