Django

Code

Ticket #3598: 3598.diff

File 3598.diff, 0.7 kB (added by ubernostrum, 2 years ago)

Documentation patch

  • docs/url_dispatch.txt

    old new  
    390390.. _generic views: ../generic_views/ 
    391391.. _syndication framework: ../syndication/ 
    392392 
     393.. admonition:: Dealing with conflicts 
     394 
     395    It's possible to have a URL pattern which captures named keyword 
     396    arguments, and also passes arguments with the same names in its 
     397    dictionary of extra arguments. When this happens, the arguments in 
     398    the dictionary will be used instead of the arguments captured in 
     399    the URL. 
     400 
    393401Passing extra options to ``include()`` 
    394402-------------------------------------- 
    395403