Added links from any reference to the url template tag to the appropriate place in...
[django.git] / docs / url_dispatch.txt
blob92730f1446185745fd9017d6e212222c1db523bd
1 ==============
2 URL dispatcher
3 ==============
5 A clean, elegant URL scheme is an important detail in a high-quality Web
6 application. Django lets you design URLs however you want, with no framework
7 limitations.
9 There's no ``.php`` or ``.cgi`` required, and certainly none of that
10 ``0,2097,1-1-1928,00`` nonsense.
12 See `Cool URIs don't change`_, by World Wide Web creator Tim Berners-Lee, for
13 excellent arguments on why URLs should be clean and usable.
15 .. _Cool URIs don't change: http://www.w3.org/Provider/Style/URI
17 Overview
18 ========
20 To design URLs for an app, you create a Python module informally called a
21 **URLconf** (URL configuration). This module is pure Python code and
22 is a simple mapping between URL patterns (as simple regular expressions) to
23 Python callback functions (your views).
25 This mapping can be as short or as long as needed. It can reference other
26 mappings. And, because it's pure Python code, it can be constructed
27 dynamically.
29 How Django processes a request
30 ==============================
32 When a user requests a page from your Django-powered site, this is the
33 algorithm the system follows to determine which Python code to execute:
35     1. Django looks at the ``ROOT_URLCONF`` setting in your `settings file`_.
36        This should be a string representing the full Python import path to your
37        URLconf. For example: ``"mydjangoapps.urls"``.
38     2. Django loads that Python module and looks for the variable
39        ``urlpatterns``. This should be a Python list, in the format returned by
40        the function ``django.conf.urls.defaults.patterns()``.
41     3. Django runs through each URL pattern, in order, and stops at the first
42        one that matches the requested URL.
43     4. Once one of the regexes matches, Django imports and calls the given
44        view, which is a simple Python function. The view gets passed a
45        `request object`_ as its first argument and any values captured in the
46        regex as remaining arguments.
48 .. _settings file: ../settings/
49 .. _request object: ../request_response/#httprequest-objects
51 Example
52 =======
54 Here's a sample URLconf::
56     from django.conf.urls.defaults import *
58     urlpatterns = patterns('',
59         (r'^articles/2003/$', 'news.views.special_case_2003'),
60         (r'^articles/(\d{4})/$', 'news.views.year_archive'),
61         (r'^articles/(\d{4})/(\d{2})/$', 'news.views.month_archive'),
62         (r'^articles/(\d{4})/(\d{2})/(\d+)/$', 'news.views.article_detail'),
63     )
65 Notes:
67     * ``from django.conf.urls.defaults import *`` makes the ``patterns()``
68       function available.
70     * To capture a value from the URL, just put parenthesis around it.
72     * There's no need to add a leading slash, because every URL has that. For
73       example, it's ``^articles``, not ``^/articles``.
75     * The ``'r'`` in front of each regular expression string is optional but
76       recommended. It tells Python that a string is "raw" -- that nothing in
77       the string should be escaped. See `Dive Into Python's explanation`_.
79 Example requests:
81     * A request to ``/articles/2005/03/`` would match the third entry in the
82       list. Django would call the function
83       ``news.views.month_archive(request, '2005', '03')``.
85     * ``/articles/2005/3/`` would not match any URL patterns, because the
86       third entry in the list requires two digits for the month.
88     * ``/articles/2003/`` would match the first pattern in the list, not the
89       second one, because the patterns are tested in order, and the first one
90       is the first test to pass. Feel free to exploit the ordering to insert
91       special cases like this.
93     * ``/articles/2003`` would not match any of these patterns, because each
94       pattern requires that the URL end with a slash.
96     * ``/articles/2003/03/3/`` would match the final pattern. Django would call
97       the function ``news.views.article_detail(request, '2003', '03', '3')``.
99 .. _Dive Into Python's explanation: http://diveintopython.org/regular_expressions/street_addresses.html#re.matching.2.3
101 Named groups
102 ============
104 The above example used simple, *non-named* regular-expression groups (via
105 parenthesis) to capture bits of the URL and pass them as *positional* arguments
106 to a view. In more advanced usage, it's possible to use *named*
107 regular-expression groups to capture URL bits and pass them as *keyword*
108 arguments to a view.
110 In Python regular expressions, the syntax for named regular-expression groups
111 is ``(?P<name>pattern)``, where ``name`` is the name of the group and
112 ``pattern`` is some pattern to match.
114 Here's the above example URLconf, rewritten to use named groups::
116     urlpatterns = patterns('',
117         (r'^articles/2003/$', 'news.views.special_case_2003'),
118         (r'^articles/(?P<year>\d{4})/$', 'news.views.year_archive'),
119         (r'^articles/(?P<year>\d{4})/(?P<month>\d{2})/$', 'news.views.month_archive'),
120         (r'^articles/(?P<year>\d{4})/(?P<month>\d{2})/(?P<day>\d+)/$', 'news.views.article_detail'),
121     )
123 This accomplishes exactly the same thing as the previous example, with one
124 subtle difference: The captured values are passed to view functions as keyword
125 arguments rather than positional arguments. For example:
127     * A request to ``/articles/2005/03/`` would call the function
128       ``news.views.month_archive(request, year='2005', month='03')``, instead
129       of ``news.views.month_archive(request, '2005', '03')``.
131     * A request to ``/articles/2003/03/3/`` would call the function
132       ``news.views.article_detail(request, year='2003', month='03', day='3')``.
134 In practice, this means your URLconfs are slightly more explicit and less prone
135 to argument-order bugs -- and you can reorder the arguments in your views'
136 function definitions. Of course, these benefits come at the cost of brevity;
137 some developers find the named-group syntax ugly and too verbose.
139 The matching/grouping algorithm
140 -------------------------------
142 Here's the algorithm the URLconf parser follows, with respect to named groups
143 vs. non-named groups in a regular expression:
145 If there are any named arguments, it will use those, ignoring non-named arguments.
146 Otherwise, it will pass all non-named arguments as positional arguments.
148 In both cases, it will pass any extra keyword arguments as keyword arguments.
149 See "Passing extra options to view functions" below.
151 What the URLconf searches against
152 =================================
154 The URLconf searches against the requested URL, as a normal Python string. This
155 does not include GET or POST parameters, or the domain name.
157 For example, in a request to ``http://www.example.com/myapp/``, the URLconf
158 will look for ``/myapp/``.
160 In a request to ``http://www.example.com/myapp/?page=3``, the URLconf will look
161 for ``/myapp/``.
163 The URLconf doesn't look at the request method. In other words, all request
164 methods -- ``POST``, ``GET``, ``HEAD``, etc. -- will be routed to the same
165 function for the same URL.
167 Syntax of the urlpatterns variable
168 ==================================
170 ``urlpatterns`` should be a Python list, in the format returned by the function
171 ``django.conf.urls.defaults.patterns()``. Always use ``patterns()`` to create
172 the ``urlpatterns`` variable.
174 Convention is to use ``from django.conf.urls.defaults import *`` at the top of
175 your URLconf. This gives your module access to these objects:
177 patterns
178 --------
180 A function that takes a prefix, and an arbitrary number of URL patterns, and
181 returns a list of URL patterns in the format Django needs.
183 The first argument to ``patterns()`` is a string ``prefix``. See
184 "The view prefix" below.
186 The remaining arguments should be tuples in this format::
188     (regular expression, Python callback function [, optional dictionary [, optional name]])
190 ...where ``optional dictionary`` and ``optional name`` are optional. (See
191 `Passing extra options to view functions`_ below.)
196 **New in Django development version**
198 You can use the ``url()`` function, instead of a tuple, as an argument to
199 ``patterns()``. This is convenient if you want to specify a name without the
200 optional extra arguments dictionary. For example::
202     urlpatterns = patterns('',
203         url(r'/index/$', index_view, name="main-view"),
204         ...
205     )
207 See `Naming URL patterns`_ for why the ``name`` parameter is useful.
209 handler404
210 ----------
212 A string representing the full Python import path to the view that should be
213 called if none of the URL patterns match.
215 By default, this is ``'django.views.defaults.page_not_found'``. That default
216 value should suffice.
218 handler500
219 ----------
221 A string representing the full Python import path to the view that should be
222 called in case of server errors. Server errors happen when you have runtime
223 errors in view code.
225 By default, this is ``'django.views.defaults.server_error'``. That default
226 value should suffice.
228 include
229 -------
231 A function that takes a full Python import path to another URLconf that should
232 be "included" in this place. See _`Including other URLconfs` below.
234 Notes on capturing text in URLs
235 ===============================
237 Each captured argument is sent to the view as a plain Python string, regardless
238 of what sort of match the regular expression makes. For example, in this
239 URLconf line::
241     (r'^articles/(?P<year>\d{4})/$', 'news.views.year_archive'),
243 ...the ``year`` argument to ``news.views.year_archive()`` will be a string, not
244 an integer, even though the ``\d{4}`` will only match integer strings.
246 A convenient trick is to specify default parameters for your views' arguments.
247 Here's an example URLconf and view::
249     # URLconf
250     urlpatterns = patterns('',
251         (r'^blog/$', 'blog.views.page'),
252         (r'^blog/page(?P<num>\d+)/$', 'blog.views.page'),
253     )
255     # View (in blog/views.py)
256     def page(request, num="1"):
257         # Output the appropriate page of blog entries, according to num.
259 In the above example, both URL patterns point to the same view --
260 ``blog.views.page`` -- but the first pattern doesn't capture anything from the
261 URL. If the first pattern matches, the ``page()`` function will use its
262 default argument for ``num``, ``"1"``. If the second pattern matches,
263 ``page()`` will use whatever ``num`` value was captured by the regex.
265 Performance
266 ===========
268 Each regular expression in a ``urlpatterns`` is compiled the first time it's
269 accessed. This makes the system blazingly fast.
271 The view prefix
272 ===============
274 You can specify a common prefix in your ``patterns()`` call, to cut down on
275 code duplication.
277 Here's the example URLconf from the `Django overview`_::
279     from django.conf.urls.defaults import *
281     urlpatterns = patterns('',
282         (r'^articles/(\d{4})/$', 'mysite.news.views.year_archive'),
283         (r'^articles/(\d{4})/(\d{2})/$', 'mysite.news.views.month_archive'),
284         (r'^articles/(\d{4})/(\d{2})/(\d+)/$', 'mysite.news.views.article_detail'),
285     )
287 In this example, each view has a common prefix -- ``'mysite.news.views'``.
288 Instead of typing that out for each entry in ``urlpatterns``, you can use the
289 first argument to the ``patterns()`` function to specify a prefix to apply to
290 each view function.
292 With this in mind, the above example can be written more concisely as::
294     from django.conf.urls.defaults import *
296     urlpatterns = patterns('mysite.news.views',
297         (r'^articles/(\d{4})/$', 'year_archive'),
298         (r'^articles/(\d{4})/(\d{2})/$', 'month_archive'),
299         (r'^articles/(\d{4})/(\d{2})/(\d+)/$', 'article_detail'),
300     )
302 Note that you don't put a trailing dot (``"."``) in the prefix. Django puts
303 that in automatically.
305 .. _Django overview: ../overview/
307 Multiple view prefixes
308 ----------------------
310 In practice, you'll probably end up mixing and matching views to the point
311 where the views in your ``urlpatterns`` won't have a common prefix. However,
312 you can still take advantage of the view prefix shortcut to remove duplication.
313 Just add multiple ``patterns()`` objects together, like this:
315 Old::
317     from django.conf.urls.defaults import *
319     urlpatterns = patterns('',
320         (r'^$', 'django.views.generic.date_based.archive_index'),
321         (r'^(?P<year>\d{4})/(?P<month>[a-z]{3})/$', 'django.views.generic.date_based.archive_month'),
322         (r'^tag/(?P<tag>\w+)/$', 'weblog.views.tag'),
323     )
325 New::
327     from django.conf.urls.defaults import *
329     urlpatterns = patterns('django.views.generic.date_based',
330         (r'^$', 'archive_index'),
331         (r'^(?P<year>\d{4})/(?P<month>[a-z]{3})/$','archive_month'),
332     )
334     urlpatterns += patterns('weblog.views',
335         (r'^tag/(?P<tag>\w+)/$', 'tag'),
336     )
338 Including other URLconfs
339 ========================
341 At any point, your ``urlpatterns`` can "include" other URLconf modules. This
342 essentially "roots" a set of URLs below other ones.
344 For example, here's the URLconf for the `Django website`_ itself. It includes a
345 number of other URLconfs::
347     from django.conf.urls.defaults import *
349     urlpatterns = patterns('',
350         (r'^weblog/',        include('django_website.apps.blog.urls.blog')),
351         (r'^documentation/', include('django_website.apps.docs.urls.docs')),
352         (r'^comments/',      include('django.contrib.comments.urls.comments')),
353     )
355 Note that the regular expressions in this example don't have a ``$``
356 (end-of-string match character) but do include a trailing slash. Whenever
357 Django encounters ``include()``, it chops off whatever part of the URL matched
358 up to that point and sends the remaining string to the included URLconf for
359 further processing.
361 .. _`Django website`: http://www.djangoproject.com/
363 Captured parameters
364 -------------------
366 An included URLconf receives any captured parameters from parent URLconfs, so
367 the following example is valid::
369     # In settings/urls/main.py
370     urlpatterns = patterns('',
371         (r'^(?P<username>\w+)/blog/', include('foo.urls.blog')),
372     )
374     # In foo/urls/blog.py
375     urlpatterns = patterns('foo.views',
376         (r'^$', 'blog.index'),
377         (r'^archive/$', 'blog.archive'),
378     )
380 In the above example, the captured ``"username"`` variable is passed to the
381 included URLconf, as expected.
383 Passing extra options to view functions
384 =======================================
386 URLconfs have a hook that lets you pass extra arguments to your view functions,
387 as a Python dictionary.
389 Any URLconf tuple can have an optional third element, which should be a
390 dictionary of extra keyword arguments to pass to the view function.
392 For example::
394     urlpatterns = patterns('blog.views',
395         (r'^blog/(?P<year>\d{4})/$', 'year_archive', {'foo': 'bar'}),
396     )
398 In this example, for a request to ``/blog/2005/``, Django will call the
399 ``blog.views.year_archive()`` view, passing it these keyword arguments::
401     year='2005', foo='bar'
403 This technique is used in `generic views`_ and in the `syndication framework`_
404 to pass metadata and options to views.
406 .. _generic views: ../generic_views/
407 .. _syndication framework: ../syndication_feeds/
409 .. admonition:: Dealing with conflicts
411     It's possible to have a URL pattern which captures named keyword arguments,
412     and also passes arguments with the same names in its dictionary of extra
413     arguments. When this happens, the arguments in the dictionary will be used
414     instead of the arguments captured in the URL.
416 Passing extra options to ``include()``
417 --------------------------------------
419 Similarly, you can pass extra options to ``include()``. When you pass extra
420 options to ``include()``, *each* line in the included URLconf will be passed
421 the extra options.
423 For example, these two URLconf sets are functionally identical:
425 Set one::
427     # main.py
428     urlpatterns = patterns('',
429         (r'^blog/', include('inner'), {'blogid': 3}),
430     )
432     # inner.py
433     urlpatterns = patterns('',
434         (r'^archive/$', 'mysite.views.archive'),
435         (r'^about/$', 'mysite.views.about'),
436     )
438 Set two::
440     # main.py
441     urlpatterns = patterns('',
442         (r'^blog/', include('inner')),
443     )
445     # inner.py
446     urlpatterns = patterns('',
447         (r'^archive/$', 'mysite.views.archive', {'blogid': 3}),
448         (r'^about/$', 'mysite.views.about', {'blogid': 3}),
449     )
451 Note that extra options will *always* be passed to *every* line in the included
452 URLconf, regardless of whether the line's view actually accepts those options
453 as valid. For this reason, this technique is only useful if you're certain that
454 every view in the the included URLconf accepts the extra options you're passing.
456 Passing callable objects instead of strings
457 ===========================================
459 Some developers find it more natural to pass the actual Python function object
460 rather than a string containing the path to its module. This alternative is
461 supported -- you can pass any callable object as the view.
463 For example, given this URLconf in "string" notation::
465     urlpatterns = patterns('',
466         (r'^archive/$', 'mysite.views.archive'),
467         (r'^about/$', 'mysite.views.about'),
468         (r'^contact/$', 'mysite.views.contact'),
469     )
471 You can accomplish the same thing by passing objects rather than strings. Just
472 be sure to import the objects::
474     from mysite.views import archive, about, contact
476     urlpatterns = patterns('',
477         (r'^archive/$', archive),
478         (r'^about/$', about),
479         (r'^contact/$', contact),
480     )
482 The following example is functionally identical. It's just a bit more compact
483 because it imports the module that contains the views, rather than importing
484 each view individually::
486     from mysite import views
488     urlpatterns = patterns('',
489         (r'^archive/$', views.archive),
490         (r'^about/$', views.about),
491         (r'^contact/$', views.contact),
492     )
494 The style you use is up to you.
496 Note that if you use this technique -- passing objects rather than strings --
497 the view prefix (as explained in "The view prefix" above) will have no effect.
499 Naming URL patterns
500 ===================
502 **New in Django development version**
504 It's fairly common to use the same view function in multiple URL patterns in
505 your URLconf. For example, these two URL patterns both point to the ``archive``
506 view::
508     urlpatterns = patterns('',
509         (r'/archive/(\d{4})/$', archive),
510         (r'/archive-summary/(\d{4})/$', archive, {'summary': True}),
511     )
513 This is completely valid, but it leads to problems when you try to do reverse
514 URL matching (through the ``permalink()`` decorator or the ``{% url %}``
515 `template tag`_). Continuing this example, if you wanted to retrieve the URL for
516 the ``archive`` view, Django's reverse URL matcher would get confused, because
517 *two* URLpatterns point at that view.
519 To solve this problem, Django supports **named URL patterns**. That is, you can
520 give a name to a URL pattern in order to distinguish it from other patterns
521 using the same view and parameters. Then, you can use this name in reverse URL
522 matching.
524 Here's the above example, rewritten to used named URL patterns::
526     urlpatterns = patterns('',
527         url(r'/archive/(\d{4})/$', archive, name="full-archive"),
528         url(r'/archive-summary/(\d{4})/$', archive, {'summary': True}, "arch-summary"),
529     )
531 With these names in place (``full-archive`` and ``arch-summary``), you can
532 target each pattern individually by using its name::
534     {% url arch-summary 1945 %}
535     {% url full-archive 2007 %}
537 Even though both URL patterns refer to the ``archive`` view here, using the
538 ``name`` parameter to ``url()`` allows you to tell them apart in templates.
540 The string used for the URL name can contain any characters you like. You are
541 not restricted to valid Python names.
543 .. note::
545     When you name your URL patterns, make sure you use names that are unlikely
546     to clash with any other application's choice of names. If you call your URL
547     pattern ``comment``, and another application does the same thing, there's
548     no guarantee which URL will be inserted into your template when you use
549     this name.
551     Putting a prefix on your URL names, perhaps derived from the application
552     name, will decrease the chances of collision. We recommend something like
553     ``myapp-comment`` instead of ``comment``.
555 .. _template tag: ../templates/#url
557 Utility methods
558 ===============
560 reverse()
561 ---------
563 If you need to use something similar to the ``{% url %}`` `template tag`_ in
564 your code, Django provides the ``django.core.urlresolvers.reverse()``. The
565 ``reverse()`` function has the following signature::
567     reverse(viewname, urlconf=None, args=None, kwargs=None)
569 ``viewname`` is either the function name (either a function reference, or the
570 string version of the name, if you used that form in ``urlpatterns``) or the
571 `URL pattern name`_.  Normally, you won't need to worry about the
572 ``urlconf`` parameter and will only pass in the positional and keyword
573 arguments to use in the URL matching. For example::
575     from django.core.urlresolvers import reverse
577     def myview(request):
578         return HttpResponseRedirect(reverse('arch-summary', args=[1945]))
580 .. _URL pattern name: `Naming URL patterns`_
582 permalink()
583 -----------
585 The ``permalink()`` decorator is useful for writing short methods that return
586 a full URL path. For example, a model's ``get_absolute_url()`` method. Refer
587 to the `model API documentation`_ for more information about ``permalink()``.
589 .. _model API documentation: ../model-api/#the-permalink-decorator