urls.txt 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884
  1. ==============
  2. URL dispatcher
  3. ==============
  4. A clean, elegant URL scheme is an important detail in a high-quality Web
  5. application. Django lets you design URLs however you want, with no framework
  6. limitations.
  7. There's no ``.php`` or ``.cgi`` required, and certainly none of that
  8. ``0,2097,1-1-1928,00`` nonsense.
  9. See `Cool URIs don't change`_, by World Wide Web creator Tim Berners-Lee, for
  10. excellent arguments on why URLs should be clean and usable.
  11. .. _Cool URIs don't change: http://www.w3.org/Provider/Style/URI
  12. Overview
  13. ========
  14. To design URLs for an app, you create a Python module informally called a
  15. **URLconf** (URL configuration). This module is pure Python code and is a
  16. simple mapping between URL patterns (simple regular expressions) to Python
  17. functions (your views).
  18. This mapping can be as short or as long as needed. It can reference other
  19. mappings. And, because it's pure Python code, it can be constructed
  20. dynamically.
  21. Django also provides a way to translate URLs according to the active
  22. language. See the :ref:`internationalization documentation
  23. <url-internationalization>` for more information.
  24. .. _how-django-processes-a-request:
  25. How Django processes a request
  26. ==============================
  27. When a user requests a page from your Django-powered site, this is the
  28. algorithm the system follows to determine which Python code to execute:
  29. 1. Django determines the root URLconf module to use. Ordinarily,
  30. this is the value of the :setting:`ROOT_URLCONF` setting, but if the incoming
  31. ``HttpRequest`` object has an attribute called ``urlconf`` (set by
  32. middleware :ref:`request processing <request-middleware>`), its value
  33. will be used in place of the :setting:`ROOT_URLCONF` setting.
  34. 2. Django loads that Python module and looks for the variable
  35. ``urlpatterns``. This should be a Python list, in the format returned by
  36. the function :func:`django.conf.urls.patterns`.
  37. 3. Django runs through each URL pattern, in order, and stops at the first
  38. one that matches the requested URL.
  39. 4. Once one of the regexes matches, Django imports and calls the given
  40. view, which is a simple Python function (or a :doc:`class based view
  41. </topics/class-based-views/index>`). The view gets passed an
  42. :class:`~django.http.HttpRequest` as its first argument and any values
  43. captured in the regex as remaining arguments.
  44. 5. If no regex matches, or if an exception is raised during any
  45. point in this process, Django invokes an appropriate
  46. error-handling view. See `Error handling`_ below.
  47. Example
  48. =======
  49. Here's a sample URLconf::
  50. from django.conf.urls import patterns, url
  51. urlpatterns = patterns('',
  52. url(r'^articles/2003/$', 'news.views.special_case_2003'),
  53. url(r'^articles/(\d{4})/$', 'news.views.year_archive'),
  54. url(r'^articles/(\d{4})/(\d{2})/$', 'news.views.month_archive'),
  55. url(r'^articles/(\d{4})/(\d{2})/(\d+)/$', 'news.views.article_detail'),
  56. )
  57. Notes:
  58. * To capture a value from the URL, just put parenthesis around it.
  59. * There's no need to add a leading slash, because every URL has that. For
  60. example, it's ``^articles``, not ``^/articles``.
  61. * The ``'r'`` in front of each regular expression string is optional but
  62. recommended. It tells Python that a string is "raw" -- that nothing in
  63. the string should be escaped. See `Dive Into Python's explanation`_.
  64. Example requests:
  65. * A request to ``/articles/2005/03/`` would match the third entry in the
  66. list. Django would call the function
  67. ``news.views.month_archive(request, '2005', '03')``.
  68. * ``/articles/2005/3/`` would not match any URL patterns, because the
  69. third entry in the list requires two digits for the month.
  70. * ``/articles/2003/`` would match the first pattern in the list, not the
  71. second one, because the patterns are tested in order, and the first one
  72. is the first test to pass. Feel free to exploit the ordering to insert
  73. special cases like this.
  74. * ``/articles/2003`` would not match any of these patterns, because each
  75. pattern requires that the URL end with a slash.
  76. * ``/articles/2003/03/03/`` would match the final pattern. Django would call
  77. the function ``news.views.article_detail(request, '2003', '03', '03')``.
  78. .. _Dive Into Python's explanation: http://diveintopython.net/regular_expressions/street_addresses.html#re.matching.2.3
  79. Named groups
  80. ============
  81. The above example used simple, *non-named* regular-expression groups (via
  82. parenthesis) to capture bits of the URL and pass them as *positional* arguments
  83. to a view. In more advanced usage, it's possible to use *named*
  84. regular-expression groups to capture URL bits and pass them as *keyword*
  85. arguments to a view.
  86. In Python regular expressions, the syntax for named regular-expression groups
  87. is ``(?P<name>pattern)``, where ``name`` is the name of the group and
  88. ``pattern`` is some pattern to match.
  89. Here's the above example URLconf, rewritten to use named groups::
  90. from django.conf.urls import patterns, url
  91. urlpatterns = patterns('',
  92. url(r'^articles/2003/$', 'news.views.special_case_2003'),
  93. url(r'^articles/(?P<year>\d{4})/$', 'news.views.year_archive'),
  94. url(r'^articles/(?P<year>\d{4})/(?P<month>\d{2})/$', 'news.views.month_archive'),
  95. url(r'^articles/(?P<year>\d{4})/(?P<month>\d{2})/(?P<day>\d{2})/$', 'news.views.article_detail'),
  96. )
  97. This accomplishes exactly the same thing as the previous example, with one
  98. subtle difference: The captured values are passed to view functions as keyword
  99. arguments rather than positional arguments. For example:
  100. * A request to ``/articles/2005/03/`` would call the function
  101. ``news.views.month_archive(request, year='2005', month='03')``, instead
  102. of ``news.views.month_archive(request, '2005', '03')``.
  103. * A request to ``/articles/2003/03/03/`` would call the function
  104. ``news.views.article_detail(request, year='2003', month='03', day='03')``.
  105. In practice, this means your URLconfs are slightly more explicit and less prone
  106. to argument-order bugs -- and you can reorder the arguments in your views'
  107. function definitions. Of course, these benefits come at the cost of brevity;
  108. some developers find the named-group syntax ugly and too verbose.
  109. The matching/grouping algorithm
  110. -------------------------------
  111. Here's the algorithm the URLconf parser follows, with respect to named groups
  112. vs. non-named groups in a regular expression:
  113. 1. If there are any named arguments, it will use those, ignoring non-named
  114. arguments.
  115. 2. Otherwise, it will pass all non-named arguments as positional arguments.
  116. In both cases, any extra keyword arguments that have been given as per `Passing
  117. extra options to view functions`_ (below) will also be passed to the view.
  118. What the URLconf searches against
  119. =================================
  120. The URLconf searches against the requested URL, as a normal Python string. This
  121. does not include GET or POST parameters, or the domain name.
  122. For example, in a request to ``http://www.example.com/myapp/``, the URLconf
  123. will look for ``myapp/``.
  124. In a request to ``http://www.example.com/myapp/?page=3``, the URLconf will look
  125. for ``myapp/``.
  126. The URLconf doesn't look at the request method. In other words, all request
  127. methods -- ``POST``, ``GET``, ``HEAD``, etc. -- will be routed to the same
  128. function for the same URL.
  129. Notes on capturing text in URLs
  130. ===============================
  131. Each captured argument is sent to the view as a plain Python string, regardless
  132. of what sort of match the regular expression makes. For example, in this
  133. URLconf line::
  134. url(r'^articles/(?P<year>\d{4})/$', 'news.views.year_archive'),
  135. ...the ``year`` argument to ``news.views.year_archive()`` will be a string, not
  136. an integer, even though the ``\d{4}`` will only match integer strings.
  137. A convenient trick is to specify default parameters for your views' arguments.
  138. Here's an example URLconf and view::
  139. # URLconf
  140. from django.conf.urls import patterns, url
  141. urlpatterns = patterns('',
  142. url(r'^blog/$', 'blog.views.page'),
  143. url(r'^blog/page(?P<num>\d+)/$', 'blog.views.page'),
  144. )
  145. # View (in blog/views.py)
  146. def page(request, num="1"):
  147. # Output the appropriate page of blog entries, according to num.
  148. ...
  149. In the above example, both URL patterns point to the same view --
  150. ``blog.views.page`` -- but the first pattern doesn't capture anything from the
  151. URL. If the first pattern matches, the ``page()`` function will use its
  152. default argument for ``num``, ``"1"``. If the second pattern matches,
  153. ``page()`` will use whatever ``num`` value was captured by the regex.
  154. Performance
  155. ===========
  156. Each regular expression in a ``urlpatterns`` is compiled the first time it's
  157. accessed. This makes the system blazingly fast.
  158. Syntax of the urlpatterns variable
  159. ==================================
  160. ``urlpatterns`` should be a Python list, in the format returned by the function
  161. :func:`django.conf.urls.patterns`. Always use ``patterns()`` to create
  162. the ``urlpatterns`` variable.
  163. Error handling
  164. ==============
  165. When Django can't find a regex matching the requested URL, or when an
  166. exception is raised, Django will invoke an error-handling view.
  167. The views to use for these cases are specified by four variables. Their
  168. default values should suffice for most projects, but further customization is
  169. possible by assigning values to them.
  170. See the documentation on :ref:`customizing error views
  171. <customizing-error-views>` for the full details.
  172. Such values can be set in your root URLconf. Setting these variables in any
  173. other URLconf will have no effect.
  174. Values must be callables, or strings representing the full Python import path
  175. to the view that should be called to handle the error condition at hand.
  176. The variables are:
  177. * ``handler404`` -- See :data:`django.conf.urls.handler404`.
  178. * ``handler500`` -- See :data:`django.conf.urls.handler500`.
  179. * ``handler403`` -- See :data:`django.conf.urls.handler403`.
  180. * ``handler400`` -- See :data:`django.conf.urls.handler400`.
  181. .. _urlpatterns-view-prefix:
  182. The view prefix
  183. ===============
  184. You can specify a common prefix in your ``patterns()`` call, to cut down on
  185. code duplication.
  186. Here's the example URLconf from the :doc:`Django overview </intro/overview>`::
  187. from django.conf.urls import patterns, url
  188. urlpatterns = patterns('',
  189. url(r'^articles/(\d{4})/$', 'news.views.year_archive'),
  190. url(r'^articles/(\d{4})/(\d{2})/$', 'news.views.month_archive'),
  191. url(r'^articles/(\d{4})/(\d{2})/(\d+)/$', 'news.views.article_detail'),
  192. )
  193. In this example, each view has a common prefix -- ``'news.views'``.
  194. Instead of typing that out for each entry in ``urlpatterns``, you can use the
  195. first argument to the ``patterns()`` function to specify a prefix to apply to
  196. each view function.
  197. With this in mind, the above example can be written more concisely as::
  198. from django.conf.urls import patterns, url
  199. urlpatterns = patterns('news.views',
  200. url(r'^articles/(\d{4})/$', 'year_archive'),
  201. url(r'^articles/(\d{4})/(\d{2})/$', 'month_archive'),
  202. url(r'^articles/(\d{4})/(\d{2})/(\d+)/$', 'article_detail'),
  203. )
  204. Note that you don't put a trailing dot (``"."``) in the prefix. Django puts
  205. that in automatically.
  206. Multiple view prefixes
  207. ----------------------
  208. In practice, you'll probably end up mixing and matching views to the point
  209. where the views in your ``urlpatterns`` won't have a common prefix. However,
  210. you can still take advantage of the view prefix shortcut to remove duplication.
  211. Just add multiple ``patterns()`` objects together, like this:
  212. Old::
  213. from django.conf.urls import patterns, url
  214. urlpatterns = patterns('',
  215. url(r'^$', 'myapp.views.app_index'),
  216. url(r'^(?P<year>\d{4})/(?P<month>[a-z]{3})/$', 'myapp.views.month_display'),
  217. url(r'^tag/(?P<tag>\w+)/$', 'weblog.views.tag'),
  218. )
  219. New::
  220. from django.conf.urls import patterns, url
  221. urlpatterns = patterns('myapp.views',
  222. url(r'^$', 'app_index'),
  223. url(r'^(?P<year>\d{4})/(?P<month>[a-z]{3})/$','month_display'),
  224. )
  225. urlpatterns += patterns('weblog.views',
  226. url(r'^tag/(?P<tag>\w+)/$', 'tag'),
  227. )
  228. .. _including-other-urlconfs:
  229. Including other URLconfs
  230. ========================
  231. At any point, your ``urlpatterns`` can "include" other URLconf modules. This
  232. essentially "roots" a set of URLs below other ones.
  233. For example, here's an excerpt of the URLconf for the `Django Web site`_
  234. itself. It includes a number of other URLconfs::
  235. from django.conf.urls import include, patterns, url
  236. urlpatterns = patterns('',
  237. # ... snip ...
  238. url(r'^comments/', include('django.contrib.comments.urls')),
  239. url(r'^community/', include('django_website.aggregator.urls')),
  240. url(r'^contact/', include('django_website.contact.urls')),
  241. # ... snip ...
  242. )
  243. Note that the regular expressions in this example don't have a ``$``
  244. (end-of-string match character) but do include a trailing slash. Whenever
  245. Django encounters ``include()`` (:func:`django.conf.urls.include()`), it chops
  246. off whatever part of the URL matched up to that point and sends the remaining
  247. string to the included URLconf for further processing.
  248. Another possibility is to include additional URL patterns not by specifying the
  249. URLconf Python module defining them as the ``include()`` argument but by using
  250. directly the pattern list as returned by :func:`~django.conf.urls.patterns`
  251. instead. For example, consider this URLconf::
  252. from django.conf.urls import include, patterns, url
  253. extra_patterns = patterns('',
  254. url(r'^reports/(?P<id>\d+)/$', 'credit.views.report'),
  255. url(r'^charge/$', 'credit.views.charge'),
  256. )
  257. urlpatterns = patterns('',
  258. url(r'^$', 'apps.main.views.homepage'),
  259. url(r'^help/', include('apps.help.urls')),
  260. url(r'^credit/', include(extra_patterns)),
  261. )
  262. In this example, the ``/credit/reports/`` URL will be handled by the
  263. ``credit.views.report()`` Django view.
  264. This can be used to remove redundancy from URLconfs where a single pattern
  265. prefix is used repeatedly. For example, consider this URLconf::
  266. from django.conf.urls import patterns, url
  267. urlpatterns = patterns('wiki.views',
  268. url(r'^(?P<page_slug>\w+)-(?P<page_id>\w+)/history/$', 'history'),
  269. url(r'^(?P<page_slug>\w+)-(?P<page_id>\w+)/edit/$', 'edit'),
  270. url(r'^(?P<page_slug>\w+)-(?P<page_id>\w+)/discuss/$', 'discuss'),
  271. url(r'^(?P<page_slug>\w+)-(?P<page_id>\w+)/permissions/$', 'permissions'),
  272. )
  273. We can improve this by stating the common path prefix only once and grouping
  274. the suffixes that differ::
  275. from django.conf.urls import include, patterns, url
  276. urlpatterns = patterns('',
  277. url(r'^(?P<page_slug>\w+)-(?P<page_id>\w+)/', include(patterns('wiki.views',
  278. url(r'^history/$', 'history'),
  279. url(r'^edit/$', 'edit'),
  280. url(r'^discuss/$', 'discuss'),
  281. url(r'^permissions/$', 'permissions'),
  282. ))),
  283. )
  284. .. _`Django Web site`: https://www.djangoproject.com/
  285. Captured parameters
  286. -------------------
  287. An included URLconf receives any captured parameters from parent URLconfs, so
  288. the following example is valid::
  289. # In settings/urls/main.py
  290. from django.conf.urls import include, patterns, url
  291. urlpatterns = patterns('',
  292. url(r'^(?P<username>\w+)/blog/', include('foo.urls.blog')),
  293. )
  294. # In foo/urls/blog.py
  295. from django.conf.urls import patterns, url
  296. urlpatterns = patterns('foo.views',
  297. url(r'^$', 'blog.index'),
  298. url(r'^archive/$', 'blog.archive'),
  299. )
  300. In the above example, the captured ``"username"`` variable is passed to the
  301. included URLconf, as expected.
  302. .. _views-extra-options:
  303. Passing extra options to view functions
  304. =======================================
  305. URLconfs have a hook that lets you pass extra arguments to your view functions,
  306. as a Python dictionary.
  307. The :func:`django.conf.urls.url` function can take an optional third argument
  308. which should be a dictionary of extra keyword arguments to pass to the view
  309. function.
  310. For example::
  311. from django.conf.urls import patterns, url
  312. urlpatterns = patterns('blog.views',
  313. url(r'^blog/(?P<year>\d{4})/$', 'year_archive', {'foo': 'bar'}),
  314. )
  315. In this example, for a request to ``/blog/2005/``, Django will call
  316. ``blog.views.year_archive(request, year='2005', foo='bar')``.
  317. This technique is used in the
  318. :doc:`syndication framework </ref/contrib/syndication>` to pass metadata and
  319. options to views.
  320. .. admonition:: Dealing with conflicts
  321. It's possible to have a URL pattern which captures named keyword arguments,
  322. and also passes arguments with the same names in its dictionary of extra
  323. arguments. When this happens, the arguments in the dictionary will be used
  324. instead of the arguments captured in the URL.
  325. Passing extra options to ``include()``
  326. --------------------------------------
  327. Similarly, you can pass extra options to :func:`~django.conf.urls.include`.
  328. When you pass extra options to ``include()``, *each* line in the included
  329. URLconf will be passed the extra options.
  330. For example, these two URLconf sets are functionally identical:
  331. Set one::
  332. # main.py
  333. from django.conf.urls import include, patterns, url
  334. urlpatterns = patterns('',
  335. url(r'^blog/', include('inner'), {'blogid': 3}),
  336. )
  337. # inner.py
  338. from django.conf.urls import patterns, url
  339. urlpatterns = patterns('',
  340. url(r'^archive/$', 'mysite.views.archive'),
  341. url(r'^about/$', 'mysite.views.about'),
  342. )
  343. Set two::
  344. # main.py
  345. from django.conf.urls import include, patterns, url
  346. urlpatterns = patterns('',
  347. url(r'^blog/', include('inner')),
  348. )
  349. # inner.py
  350. from django.conf.urls import patterns, url
  351. urlpatterns = patterns('',
  352. url(r'^archive/$', 'mysite.views.archive', {'blogid': 3}),
  353. url(r'^about/$', 'mysite.views.about', {'blogid': 3}),
  354. )
  355. Note that extra options will *always* be passed to *every* line in the included
  356. URLconf, regardless of whether the line's view actually accepts those options
  357. as valid. For this reason, this technique is only useful if you're certain that
  358. every view in the included URLconf accepts the extra options you're passing.
  359. Passing callable objects instead of strings
  360. ===========================================
  361. Some developers find it more natural to pass the actual Python function object
  362. rather than a string containing the path to its module. This alternative is
  363. supported -- you can pass any callable object as the view.
  364. For example, given this URLconf in "string" notation::
  365. from django.conf.urls import patterns, url
  366. urlpatterns = patterns('',
  367. url(r'^archive/$', 'mysite.views.archive'),
  368. url(r'^about/$', 'mysite.views.about'),
  369. url(r'^contact/$', 'mysite.views.contact'),
  370. )
  371. You can accomplish the same thing by passing objects rather than strings. Just
  372. be sure to import the objects::
  373. from django.conf.urls import patterns, url
  374. from mysite.views import archive, about, contact
  375. urlpatterns = patterns('',
  376. url(r'^archive/$', archive),
  377. url(r'^about/$', about),
  378. url(r'^contact/$', contact),
  379. )
  380. The following example is functionally identical. It's just a bit more compact
  381. because it imports the module that contains the views, rather than importing
  382. each view individually::
  383. from django.conf.urls import patterns, url
  384. from mysite import views
  385. urlpatterns = patterns('',
  386. url(r'^archive/$', views.archive),
  387. url(r'^about/$', views.about),
  388. url(r'^contact/$', views.contact),
  389. )
  390. The style you use is up to you.
  391. Note that if you use this technique -- passing objects rather than strings --
  392. the view prefix (as explained in "The view prefix" above) will have no effect.
  393. Note that :doc:`class based views</topics/class-based-views/index>` must be
  394. imported::
  395. from django.conf.urls import patterns, url
  396. from mysite.views import ClassBasedView
  397. urlpatterns = patterns('',
  398. url(r'^myview/$', ClassBasedView.as_view()),
  399. )
  400. Reverse resolution of URLs
  401. ==========================
  402. A common need when working on a Django project is the possibility to obtain URLs
  403. in their final forms either for embedding in generated content (views and assets
  404. URLs, URLs shown to the user, etc.) or for handling of the navigation flow on
  405. the server side (redirections, etc.)
  406. It is strongly desirable not having to hard-code these URLs (a laborious,
  407. non-scalable and error-prone strategy) or having to devise ad-hoc mechanisms for
  408. generating URLs that are parallel to the design described by the URLconf and as
  409. such in danger of producing stale URLs at some point.
  410. In other words, what's needed is a DRY mechanism. Among other advantages it
  411. would allow evolution of the URL design without having to go all over the
  412. project source code to search and replace outdated URLs.
  413. The piece of information we have available as a starting point to get a URL is
  414. an identification (e.g. the name) of the view in charge of handling it, other
  415. pieces of information that necessarily must participate in the lookup of the
  416. right URL are the types (positional, keyword) and values of the view arguments.
  417. Django provides a solution such that the URL mapper is the only repository of
  418. the URL design. You feed it with your URLconf and then it can be used in both
  419. directions:
  420. * Starting with a URL requested by the user/browser, it calls the right Django
  421. view providing any arguments it might need with their values as extracted from
  422. the URL.
  423. * Starting with the identification of the corresponding Django view plus the
  424. values of arguments that would be passed to it, obtain the associated URL.
  425. The first one is the usage we've been discussing in the previous sections. The
  426. second one is what is known as *reverse resolution of URLs*, *reverse URL
  427. matching*, *reverse URL lookup*, or simply *URL reversing*.
  428. Django provides tools for performing URL reversing that match the different
  429. layers where URLs are needed:
  430. * In templates: Using the :ttag:`url` template tag.
  431. * In Python code: Using the :func:`django.core.urlresolvers.reverse`
  432. function.
  433. * In higher level code related to handling of URLs of Django model instances:
  434. The :meth:`~django.db.models.Model.get_absolute_url` method.
  435. Examples
  436. --------
  437. Consider again this URLconf entry::
  438. from django.conf.urls import patterns, url
  439. urlpatterns = patterns('',
  440. #...
  441. url(r'^articles/(\d{4})/$', 'news.views.year_archive'),
  442. #...
  443. )
  444. According to this design, the URL for the archive corresponding to year *nnnn*
  445. is ``/articles/nnnn/``.
  446. You can obtain these in template code by using:
  447. .. code-block:: html+django
  448. <a href="{% url 'news.views.year_archive' 2012 %}">2012 Archive</a>
  449. {# Or with the year in a template context variable: #}
  450. <ul>
  451. {% for yearvar in year_list %}
  452. <li><a href="{% url 'news.views.year_archive' yearvar %}">{{ yearvar }} Archive</a></li>
  453. {% endfor %}
  454. </ul>
  455. Or in Python code::
  456. from django.core.urlresolvers import reverse
  457. from django.http import HttpResponseRedirect
  458. def redirect_to_year(request):
  459. # ...
  460. year = 2006
  461. # ...
  462. return HttpResponseRedirect(reverse('news.views.year_archive', args=(year,)))
  463. If, for some reason, it was decided that the URLs where content for yearly
  464. article archives are published at should be changed then you would only need to
  465. change the entry in the URLconf.
  466. In some scenarios where views are of a generic nature, a many-to-one
  467. relationship might exist between URLs and views. For these cases the view name
  468. isn't a good enough identifier for it when comes the time of reversing
  469. URLs. Read the next section to know about the solution Django provides for this.
  470. .. _naming-url-patterns:
  471. Naming URL patterns
  472. ===================
  473. It's fairly common to use the same view function in multiple URL patterns in
  474. your URLconf. For example, these two URL patterns both point to the ``archive``
  475. view::
  476. from django.conf.urls import patterns, url
  477. from mysite.views import archive
  478. urlpatterns = patterns('',
  479. url(r'^archive/(\d{4})/$', archive),
  480. url(r'^archive-summary/(\d{4})/$', archive, {'summary': True}),
  481. )
  482. This is completely valid, but it leads to problems when you try to do reverse
  483. URL matching (through the :func:`~django.core.urlresolvers.reverse` function
  484. or the :ttag:`url` template tag). Continuing this example, if you wanted to
  485. retrieve the URL for the ``archive`` view, Django's reverse URL matcher would
  486. get confused, because *two* URL patterns point at that view.
  487. To solve this problem, Django supports **named URL patterns**. That is, you can
  488. give a name to a URL pattern in order to distinguish it from other patterns
  489. using the same view and parameters. Then, you can use this name in reverse URL
  490. matching.
  491. Here's the above example, rewritten to use named URL patterns::
  492. from django.conf.urls import patterns, url
  493. from mysite.views import archive
  494. urlpatterns = patterns('',
  495. url(r'^archive/(\d{4})/$', archive, name="full-archive"),
  496. url(r'^archive-summary/(\d{4})/$', archive, {'summary': True}, name="arch-summary"),
  497. )
  498. With these names in place (``full-archive`` and ``arch-summary``), you can
  499. target each pattern individually by using its name:
  500. .. code-block:: html+django
  501. {% url 'arch-summary' 1945 %}
  502. {% url 'full-archive' 2007 %}
  503. Even though both URL patterns refer to the ``archive`` view here, using the
  504. ``name`` parameter to :func:`django.conf.urls.url` allows you to tell them
  505. apart in templates.
  506. The string used for the URL name can contain any characters you like. You are
  507. not restricted to valid Python names.
  508. .. note::
  509. When you name your URL patterns, make sure you use names that are unlikely
  510. to clash with any other application's choice of names. If you call your URL
  511. pattern ``comment``, and another application does the same thing, there's
  512. no guarantee which URL will be inserted into your template when you use
  513. this name.
  514. Putting a prefix on your URL names, perhaps derived from the application
  515. name, will decrease the chances of collision. We recommend something like
  516. ``myapp-comment`` instead of ``comment``.
  517. .. _topics-http-defining-url-namespaces:
  518. URL namespaces
  519. ==============
  520. Introduction
  521. ------------
  522. When you need to deploy multiple instances of a single application, it can be
  523. helpful to be able to differentiate between instances. This is especially
  524. important when using :ref:`named URL patterns <naming-url-patterns>`, since
  525. multiple instances of a single application will share named URLs. Namespaces
  526. provide a way to tell these named URLs apart.
  527. A URL namespace comes in two parts, both of which are strings:
  528. .. glossary::
  529. application namespace
  530. This describes the name of the application that is being deployed. Every
  531. instance of a single application will have the same application namespace.
  532. For example, Django's admin application has the somewhat predictable
  533. application namespace of ``'admin'``.
  534. instance namespace
  535. This identifies a specific instance of an application. Instance namespaces
  536. should be unique across your entire project. However, an instance namespace
  537. can be the same as the application namespace. This is used to specify a
  538. default instance of an application. For example, the default Django Admin
  539. instance has an instance namespace of ``'admin'``.
  540. Namespaced URLs are specified using the ``':'`` operator. For example, the main
  541. index page of the admin application is referenced using ``'admin:index'``. This
  542. indicates a namespace of ``'admin'``, and a named URL of ``'index'``.
  543. Namespaces can also be nested. The named URL ``'foo:bar:whiz'`` would look for
  544. a pattern named ``'whiz'`` in the namespace ``'bar'`` that is itself defined
  545. within the top-level namespace ``'foo'``.
  546. .. _topics-http-reversing-url-namespaces:
  547. Reversing namespaced URLs
  548. -------------------------
  549. When given a namespaced URL (e.g. ``'myapp:index'``) to resolve, Django splits
  550. the fully qualified name into parts, and then tries the following lookup:
  551. 1. First, Django looks for a matching :term:`application namespace` (in this
  552. example, ``'myapp'``). This will yield a list of instances of that
  553. application.
  554. 2. If there is a *current* application defined, Django finds and returns
  555. the URL resolver for that instance. The *current* application can be
  556. specified as an attribute on the template context - applications that
  557. expect to have multiple deployments should set the ``current_app``
  558. attribute on any ``Context`` or ``RequestContext`` that is used to
  559. render a template.
  560. The current application can also be specified manually as an argument
  561. to the :func:`django.core.urlresolvers.reverse` function.
  562. 3. If there is no current application. Django looks for a default
  563. application instance. The default application instance is the instance
  564. that has an :term:`instance namespace` matching the :term:`application
  565. namespace` (in this example, an instance of the ``myapp`` called
  566. ``'myapp'``).
  567. 4. If there is no default application instance, Django will pick the last
  568. deployed instance of the application, whatever its instance name may be.
  569. 5. If the provided namespace doesn't match an :term:`application namespace` in
  570. step 1, Django will attempt a direct lookup of the namespace as an
  571. :term:`instance namespace`.
  572. If there are nested namespaces, these steps are repeated for each part of the
  573. namespace until only the view name is unresolved. The view name will then be
  574. resolved into a URL in the namespace that has been found.
  575. Example
  576. ~~~~~~~
  577. To show this resolution strategy in action, consider an example of two instances
  578. of ``myapp``: one called ``'foo'``, and one called ``'bar'``. ``myapp`` has a
  579. main index page with a URL named ``'index'``. Using this setup, the following
  580. lookups are possible:
  581. * If one of the instances is current - say, if we were rendering a utility page
  582. in the instance ``'bar'`` - ``'myapp:index'`` will resolve to the index page
  583. of the instance ``'bar'``.
  584. * If there is no current instance - say, if we were rendering a page
  585. somewhere else on the site - ``'myapp:index'`` will resolve to the last
  586. registered instance of ``myapp``. Since there is no default instance,
  587. the last instance of ``myapp`` that is registered will be used. This could
  588. be ``'foo'`` or ``'bar'``, depending on the order they are introduced into the
  589. urlpatterns of the project.
  590. * ``'foo:index'`` will always resolve to the index page of the instance
  591. ``'foo'``.
  592. If there was also a default instance - i.e., an instance named ``'myapp'`` - the
  593. following would happen:
  594. * If one of the instances is current - say, if we were rendering a utility page
  595. in the instance ``'bar'`` - ``'myapp:index'`` will resolve to the index page
  596. of the instance ``'bar'``.
  597. * If there is no current instance - say, if we were rendering a page somewhere
  598. else on the site - ``'myapp:index'`` will resolve to the index page of the
  599. default instance.
  600. * ``'foo:index'`` will again resolve to the index page of the instance
  601. ``'foo'``.
  602. .. _namespaces-and-include:
  603. URL namespaces and included URLconfs
  604. ------------------------------------
  605. URL namespaces of included URLconfs can be specified in two ways.
  606. Firstly, you can provide the :term:`application <application namespace>` and
  607. :term:`instance <instance namespace>` namespaces as arguments to
  608. :func:`django.conf.urls.include()` when you construct your URL patterns. For
  609. example,::
  610. url(r'^help/', include('apps.help.urls', namespace='foo', app_name='bar')),
  611. This will include the URLs defined in ``apps.help.urls`` into the
  612. :term:`application namespace` ``'bar'``, with the :term:`instance namespace`
  613. ``'foo'``.
  614. Secondly, you can include an object that contains embedded namespace data. If
  615. you ``include()`` an object as returned by :func:`~django.conf.urls.patterns`,
  616. the URLs contained in that object will be added to the global namespace.
  617. However, you can also ``include()`` a 3-tuple containing::
  618. (<patterns object>, <application namespace>, <instance namespace>)
  619. For example::
  620. from django.conf.urls import include, patterns, url
  621. help_patterns = patterns('',
  622. url(r'^basic/$', 'apps.help.views.views.basic'),
  623. url(r'^advanced/$', 'apps.help.views.views.advanced'),
  624. )
  625. url(r'^help/', include((help_patterns, 'bar', 'foo'))),
  626. This will include the nominated URL patterns into the given application and
  627. instance namespace.
  628. For example, the Django Admin is deployed as instances of
  629. :class:`~django.contrib.admin.AdminSite`. ``AdminSite`` objects have a ``urls``
  630. attribute: A 3-tuple that contains all the patterns in the corresponding admin
  631. site, plus the application namespace ``'admin'``, and the name of the admin
  632. instance. It is this ``urls`` attribute that you ``include()`` into your
  633. projects ``urlpatterns`` when you deploy an Admin instance.
  634. Be sure to pass a tuple to ``include()``. If you simply pass three arguments:
  635. ``include(help_patterns, 'bar', 'foo')``, Django won't throw an error but due
  636. to the signature of ``include()``, ``'bar'`` will be the instance namespace and
  637. ``'foo'`` will be the application namespace instead of vice versa.