Changes between Initial Version and Version 5 of Ticket #31069


Ignore:
Timestamp:
Dec 7, 2019, 3:12:21 PM (4 years ago)
Author:
Terence Honles
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #31069

    • Property Component Core (URLs)Documentation
    • Property Triage Stage UnreviewedAccepted
    • Property Summary Change in behavior for optional re matchesChange in behavior for optional re matches.
  • Ticket #31069 – Description

    initial v5  
    1010
    1111urlpatterns = [
    12   re_path(r'^(?P<optional1>\w+/)(?:(?P<optional2>\w+)/)', view)
     12  re_path(r'^(?P<optional1>\w+/)(?:(?P<optional2>\w+)/)?', view)
    1313]
    1414}}}
Back to Top