Changes between Initial Version and Version 5 of Ticket #31069
- Timestamp:
- Dec 7, 2019, 3:12:21 PM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #31069
- Property Component Core (URLs) → Documentation
- Property Triage Stage Unreviewed → Accepted
- Property Summary Change in behavior for optional re matches → Change in behavior for optional re matches.
-
Ticket #31069 – Description
initial v5 10 10 11 11 urlpatterns = [ 12 re_path(r'^(?P<optional1>\w+/)(?:(?P<optional2>\w+)/) ', view)12 re_path(r'^(?P<optional1>\w+/)(?:(?P<optional2>\w+)/)?', view) 13 13 ] 14 14 }}}