urls.txt 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908
  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. See `Cool URIs don't change`_, by World Wide Web creator Tim Berners-Lee, for
  8. excellent arguments on why URLs should be clean and usable.
  9. .. _Cool URIs don't change: https://www.w3.org/Provider/Style/URI
  10. Overview
  11. ========
  12. To design URLs for an app, you create a Python module informally called a
  13. **URLconf** (URL configuration). This module is pure Python code and is a
  14. mapping between URL path expressions to Python functions (your views).
  15. This mapping can be as short or as long as needed. It can reference other
  16. mappings. And, because it's pure Python code, it can be constructed
  17. dynamically.
  18. Django also provides a way to translate URLs according to the active
  19. language. See the :ref:`internationalization documentation
  20. <url-internationalization>` for more information.
  21. .. _how-django-processes-a-request:
  22. How Django processes a request
  23. ==============================
  24. When a user requests a page from your Django-powered site, this is the
  25. algorithm the system follows to determine which Python code to execute:
  26. #. Django determines the root URLconf module to use. Ordinarily,
  27. this is the value of the :setting:`ROOT_URLCONF` setting, but if the incoming
  28. ``HttpRequest`` object has a :attr:`~django.http.HttpRequest.urlconf`
  29. attribute (set by middleware), its value will be used in place of the
  30. :setting:`ROOT_URLCONF` setting.
  31. #. Django loads that Python module and looks for the variable
  32. ``urlpatterns``. This should be a :term:`sequence` of
  33. :func:`django.urls.path` and/or :func:`django.urls.re_path` instances.
  34. #. Django runs through each URL pattern, in order, and stops at the first
  35. one that matches the requested URL, matching against
  36. :attr:`~django.http.HttpRequest.path_info`.
  37. #. Once one of the URL patterns matches, Django imports and calls the given
  38. view, which is a Python function (or a :doc:`class-based view
  39. </topics/class-based-views/index>`). The view gets passed the following
  40. arguments:
  41. * An instance of :class:`~django.http.HttpRequest`.
  42. * If the matched URL pattern contained no named groups, then the
  43. matches from the regular expression are provided as positional arguments.
  44. * The keyword arguments are made up of any named parts matched by the
  45. path expression that are provided, overridden by any arguments specified
  46. in the optional ``kwargs`` argument to :func:`django.urls.path` or
  47. :func:`django.urls.re_path`.
  48. #. If no URL pattern matches, or if an exception is raised during any
  49. point in this process, Django invokes an appropriate
  50. error-handling view. See `Error handling`_ below.
  51. Example
  52. =======
  53. Here's a sample URLconf::
  54. from django.urls import path
  55. from . import views
  56. urlpatterns = [
  57. path("articles/2003/", views.special_case_2003),
  58. path("articles/<int:year>/", views.year_archive),
  59. path("articles/<int:year>/<int:month>/", views.month_archive),
  60. path("articles/<int:year>/<int:month>/<slug:slug>/", views.article_detail),
  61. ]
  62. Notes:
  63. * To capture a value from the URL, use angle brackets.
  64. * Captured values can optionally include a converter type. For example, use
  65. ``<int:name>`` to capture an integer parameter. If a converter isn't included,
  66. any string, excluding a ``/`` character, is matched.
  67. * There's no need to add a leading slash, because every URL has that. For
  68. example, it's ``articles``, not ``/articles``.
  69. Example requests:
  70. * A request to ``/articles/2005/03/`` would match the third entry in the
  71. list. Django would call the function
  72. ``views.month_archive(request, year=2005, month=3)``.
  73. * ``/articles/2003/`` would match the first pattern in the list, not the
  74. second one, because the patterns are tested in order, and the first one
  75. is the first test to pass. Feel free to exploit the ordering to insert
  76. special cases like this. Here, Django would call the function
  77. ``views.special_case_2003(request)``
  78. * ``/articles/2003`` would not match any of these patterns, because each
  79. pattern requires that the URL end with a slash.
  80. * ``/articles/2003/03/building-a-django-site/`` would match the final
  81. pattern. Django would call the function
  82. ``views.article_detail(request, year=2003, month=3, slug="building-a-django-site")``.
  83. Path converters
  84. ===============
  85. The following path converters are available by default:
  86. * ``str`` - Matches any non-empty string, excluding the path separator, ``'/'``.
  87. This is the default if a converter isn't included in the expression.
  88. * ``int`` - Matches zero or any positive integer. Returns an ``int``.
  89. * ``slug`` - Matches any slug string consisting of ASCII letters or numbers,
  90. plus the hyphen and underscore characters. For example,
  91. ``building-your-1st-django-site``.
  92. * ``uuid`` - Matches a formatted UUID. To prevent multiple URLs from mapping to
  93. the same page, dashes must be included and letters must be lowercase. For
  94. example, ``075194d3-6885-417e-a8a8-6c931e272f00``. Returns a
  95. :class:`~uuid.UUID` instance.
  96. * ``path`` - Matches any non-empty string, including the path separator,
  97. ``'/'``. This allows you to match against a complete URL path rather than
  98. a segment of a URL path as with ``str``.
  99. .. _registering-custom-path-converters:
  100. Registering custom path converters
  101. ==================================
  102. For more complex matching requirements, you can define your own path converters.
  103. A converter is a class that includes the following:
  104. * A ``regex`` class attribute, as a string.
  105. * A ``to_python(self, value)`` method, which handles converting the matched
  106. string into the type that should be passed to the view function. It should
  107. raise ``ValueError`` if it can't convert the given value. A ``ValueError`` is
  108. interpreted as no match and as a consequence a 404 response is sent to the
  109. user unless another URL pattern matches.
  110. * A ``to_url(self, value)`` method, which handles converting the Python type
  111. into a string to be used in the URL. It should raise ``ValueError`` if it
  112. can't convert the given value. A ``ValueError`` is interpreted as no match
  113. and as a consequence :func:`~django.urls.reverse` will raise
  114. :class:`~django.urls.NoReverseMatch` unless another URL pattern matches.
  115. For example::
  116. class FourDigitYearConverter:
  117. regex = "[0-9]{4}"
  118. def to_python(self, value):
  119. return int(value)
  120. def to_url(self, value):
  121. return "%04d" % value
  122. Register custom converter classes in your URLconf using
  123. :func:`~django.urls.register_converter`::
  124. from django.urls import path, register_converter
  125. from . import converters, views
  126. register_converter(converters.FourDigitYearConverter, "yyyy")
  127. urlpatterns = [
  128. path("articles/2003/", views.special_case_2003),
  129. path("articles/<yyyy:year>/", views.year_archive),
  130. ...,
  131. ]
  132. Using regular expressions
  133. =========================
  134. If the paths and converters syntax isn't sufficient for defining your URL
  135. patterns, you can also use regular expressions. To do so, use
  136. :func:`~django.urls.re_path` instead of :func:`~django.urls.path`.
  137. In Python regular expressions, the syntax for named regular expression groups
  138. is ``(?P<name>pattern)``, where ``name`` is the name of the group and
  139. ``pattern`` is some pattern to match.
  140. Here's the example URLconf from earlier, rewritten using regular expressions::
  141. from django.urls import path, re_path
  142. from . import views
  143. urlpatterns = [
  144. path("articles/2003/", views.special_case_2003),
  145. re_path(r"^articles/(?P<year>[0-9]{4})/$", views.year_archive),
  146. re_path(r"^articles/(?P<year>[0-9]{4})/(?P<month>[0-9]{2})/$", views.month_archive),
  147. re_path(
  148. r"^articles/(?P<year>[0-9]{4})/(?P<month>[0-9]{2})/(?P<slug>[\w-]+)/$",
  149. views.article_detail,
  150. ),
  151. ]
  152. This accomplishes roughly the same thing as the previous example, except:
  153. * The exact URLs that will match are slightly more constrained. For example,
  154. the year 10000 will no longer match since the year integers are constrained
  155. to be exactly four digits long.
  156. * Each captured argument is sent to the view as a string, regardless of what
  157. sort of match the regular expression makes.
  158. When switching from using :func:`~django.urls.path` to
  159. :func:`~django.urls.re_path` or vice versa, it's particularly important to be
  160. aware that the type of the view arguments may change, and so you may need to
  161. adapt your views.
  162. Using unnamed regular expression groups
  163. ---------------------------------------
  164. As well as the named group syntax, e.g. ``(?P<year>[0-9]{4})``, you can
  165. also use the shorter unnamed group, e.g. ``([0-9]{4})``.
  166. This usage isn't particularly recommended as it makes it easier to accidentally
  167. introduce errors between the intended meaning of a match and the arguments
  168. of the view.
  169. In either case, using only one style within a given regex is recommended. When
  170. both styles are mixed, any unnamed groups are ignored and only named groups are
  171. passed to the view function.
  172. Nested arguments
  173. ----------------
  174. Regular expressions allow nested arguments, and Django will resolve them and
  175. pass them to the view. When reversing, Django will try to fill in all outer
  176. captured arguments, ignoring any nested captured arguments. Consider the
  177. following URL patterns which optionally take a page argument::
  178. from django.urls import re_path
  179. urlpatterns = [
  180. re_path(r"^blog/(page-([0-9]+)/)?$", blog_articles), # bad
  181. re_path(r"^comments/(?:page-(?P<page_number>[0-9]+)/)?$", comments), # good
  182. ]
  183. Both patterns use nested arguments and will resolve: for example,
  184. ``blog/page-2/`` will result in a match to ``blog_articles`` with two
  185. positional arguments: ``page-2/`` and ``2``. The second pattern for
  186. ``comments`` will match ``comments/page-2/`` with keyword argument
  187. ``page_number`` set to 2. The outer argument in this case is a non-capturing
  188. argument ``(?:...)``.
  189. The ``blog_articles`` view needs the outermost captured argument to be reversed,
  190. ``page-2/`` or no arguments in this case, while ``comments`` can be reversed
  191. with either no arguments or a value for ``page_number``.
  192. Nested captured arguments create a strong coupling between the view arguments
  193. and the URL as illustrated by ``blog_articles``: the view receives part of the
  194. URL (``page-2/``) instead of only the value the view is interested in. This
  195. coupling is even more pronounced when reversing, since to reverse the view we
  196. need to pass the piece of URL instead of the page number.
  197. As a rule of thumb, only capture the values the view needs to work with and
  198. use non-capturing arguments when the regular expression needs an argument but
  199. the view ignores it.
  200. What the URLconf searches against
  201. =================================
  202. The URLconf searches against the requested URL, as a normal Python string. This
  203. does not include GET or POST parameters, or the domain name.
  204. For example, in a request to ``https://www.example.com/myapp/``, the URLconf
  205. will look for ``myapp/``.
  206. In a request to ``https://www.example.com/myapp/?page=3``, the URLconf will look
  207. for ``myapp/``.
  208. The URLconf doesn't look at the request method. In other words, all request
  209. methods -- ``POST``, ``GET``, ``HEAD``, etc. -- will be routed to the same
  210. function for the same URL.
  211. Specifying defaults for view arguments
  212. ======================================
  213. A convenient trick is to specify default parameters for your views' arguments.
  214. Here's an example URLconf and view::
  215. # URLconf
  216. from django.urls import path
  217. from . import views
  218. urlpatterns = [
  219. path("blog/", views.page),
  220. path("blog/page<int:num>/", views.page),
  221. ]
  222. # View (in blog/views.py)
  223. def page(request, num=1):
  224. # Output the appropriate page of blog entries, according to num.
  225. ...
  226. In the above example, both URL patterns point to the same view --
  227. ``views.page`` -- but the first pattern doesn't capture anything from the
  228. URL. If the first pattern matches, the ``page()`` function will use its
  229. default argument for ``num``, ``1``. If the second pattern matches,
  230. ``page()`` will use whatever ``num`` value was captured.
  231. Performance
  232. ===========
  233. Django processes regular expressions in the ``urlpatterns`` list which is
  234. compiled the first time it's accessed. Subsequent requests use the cached
  235. configuration via the URL resolver.
  236. Syntax of the ``urlpatterns`` variable
  237. ======================================
  238. ``urlpatterns`` should be a :term:`sequence` of :func:`~django.urls.path`
  239. and/or :func:`~django.urls.re_path` instances.
  240. Error handling
  241. ==============
  242. When Django can't find a match for the requested URL, or when an exception is
  243. raised, Django invokes an error-handling view.
  244. The views to use for these cases are specified by four variables. Their
  245. default values should suffice for most projects, but further customization is
  246. possible by overriding their default values.
  247. See the documentation on :ref:`customizing error views
  248. <customizing-error-views>` for the full details.
  249. Such values can be set in your root URLconf. Setting these variables in any
  250. other URLconf will have no effect.
  251. Values must be callables, or strings representing the full Python import path
  252. to the view that should be called to handle the error condition at hand.
  253. The variables are:
  254. * ``handler400`` -- See :data:`django.conf.urls.handler400`.
  255. * ``handler403`` -- See :data:`django.conf.urls.handler403`.
  256. * ``handler404`` -- See :data:`django.conf.urls.handler404`.
  257. * ``handler500`` -- See :data:`django.conf.urls.handler500`.
  258. .. _including-other-urlconfs:
  259. Including other URLconfs
  260. ========================
  261. At any point, your ``urlpatterns`` can "include" other URLconf modules. This
  262. essentially "roots" a set of URLs below other ones.
  263. For example, here's an excerpt of the URLconf for the `Django website`_
  264. itself. It includes a number of other URLconfs::
  265. from django.urls import include, path
  266. urlpatterns = [
  267. # ... snip ...
  268. path("community/", include("aggregator.urls")),
  269. path("contact/", include("contact.urls")),
  270. # ... snip ...
  271. ]
  272. Whenever Django encounters :func:`~django.urls.include()`, it chops off
  273. whatever part of the URL matched up to that point and sends the remaining
  274. string to the included URLconf for further processing.
  275. Another possibility is to include additional URL patterns by using a list of
  276. :func:`~django.urls.path` instances. For example, consider this URLconf::
  277. from django.urls import include, path
  278. from apps.main import views as main_views
  279. from credit import views as credit_views
  280. extra_patterns = [
  281. path("reports/", credit_views.report),
  282. path("reports/<int:id>/", credit_views.report),
  283. path("charge/", credit_views.charge),
  284. ]
  285. urlpatterns = [
  286. path("", main_views.homepage),
  287. path("help/", include("apps.help.urls")),
  288. path("credit/", include(extra_patterns)),
  289. ]
  290. In this example, the ``/credit/reports/`` URL will be handled by the
  291. ``credit_views.report()`` Django view.
  292. This can be used to remove redundancy from URLconfs where a single pattern
  293. prefix is used repeatedly. For example, consider this URLconf::
  294. from django.urls import path
  295. from . import views
  296. urlpatterns = [
  297. path("<page_slug>-<page_id>/history/", views.history),
  298. path("<page_slug>-<page_id>/edit/", views.edit),
  299. path("<page_slug>-<page_id>/discuss/", views.discuss),
  300. path("<page_slug>-<page_id>/permissions/", views.permissions),
  301. ]
  302. We can improve this by stating the common path prefix only once and grouping
  303. the suffixes that differ::
  304. from django.urls import include, path
  305. from . import views
  306. urlpatterns = [
  307. path(
  308. "<page_slug>-<page_id>/",
  309. include(
  310. [
  311. path("history/", views.history),
  312. path("edit/", views.edit),
  313. path("discuss/", views.discuss),
  314. path("permissions/", views.permissions),
  315. ]
  316. ),
  317. ),
  318. ]
  319. .. _`Django website`: https://www.djangoproject.com/
  320. Captured parameters
  321. -------------------
  322. An included URLconf receives any captured parameters from parent URLconfs, so
  323. the following example is valid::
  324. # In settings/urls/main.py
  325. from django.urls import include, path
  326. urlpatterns = [
  327. path("<username>/blog/", include("foo.urls.blog")),
  328. ]
  329. # In foo/urls/blog.py
  330. from django.urls import path
  331. from . import views
  332. urlpatterns = [
  333. path("", views.blog.index),
  334. path("archive/", views.blog.archive),
  335. ]
  336. In the above example, the captured ``"username"`` variable is passed to the
  337. included URLconf, as expected.
  338. .. _views-extra-options:
  339. Passing extra options to view functions
  340. =======================================
  341. URLconfs have a hook that lets you pass extra arguments to your view functions,
  342. as a Python dictionary.
  343. The :func:`~django.urls.path` function can take an optional third argument
  344. which should be a dictionary of extra keyword arguments to pass to the view
  345. function.
  346. For example::
  347. from django.urls import path
  348. from . import views
  349. urlpatterns = [
  350. path("blog/<int:year>/", views.year_archive, {"foo": "bar"}),
  351. ]
  352. In this example, for a request to ``/blog/2005/``, Django will call
  353. ``views.year_archive(request, year=2005, foo='bar')``.
  354. This technique is used in the
  355. :doc:`syndication framework </ref/contrib/syndication>` to pass metadata and
  356. options to views.
  357. .. admonition:: Dealing with conflicts
  358. It's possible to have a URL pattern which captures named keyword arguments,
  359. and also passes arguments with the same names in its dictionary of extra
  360. arguments. When this happens, the arguments in the dictionary will be used
  361. instead of the arguments captured in the URL.
  362. Passing extra options to ``include()``
  363. --------------------------------------
  364. Similarly, you can pass extra options to :func:`~django.urls.include` and
  365. each line in the included URLconf will be passed the extra options.
  366. For example, these two URLconf sets are functionally identical:
  367. Set one::
  368. # main.py
  369. from django.urls import include, path
  370. urlpatterns = [
  371. path("blog/", include("inner"), {"blog_id": 3}),
  372. ]
  373. # inner.py
  374. from django.urls import path
  375. from mysite import views
  376. urlpatterns = [
  377. path("archive/", views.archive),
  378. path("about/", views.about),
  379. ]
  380. Set two::
  381. # main.py
  382. from django.urls import include, path
  383. from mysite import views
  384. urlpatterns = [
  385. path("blog/", include("inner")),
  386. ]
  387. # inner.py
  388. from django.urls import path
  389. urlpatterns = [
  390. path("archive/", views.archive, {"blog_id": 3}),
  391. path("about/", views.about, {"blog_id": 3}),
  392. ]
  393. Note that extra options will *always* be passed to *every* line in the included
  394. URLconf, regardless of whether the line's view actually accepts those options
  395. as valid. For this reason, this technique is only useful if you're certain that
  396. every view in the included URLconf accepts the extra options you're passing.
  397. Reverse resolution of URLs
  398. ==========================
  399. A common need when working on a Django project is the possibility to obtain URLs
  400. in their final forms either for embedding in generated content (views and assets
  401. URLs, URLs shown to the user, etc.) or for handling of the navigation flow on
  402. the server side (redirections, etc.)
  403. It is strongly desirable to avoid hard-coding these URLs (a laborious,
  404. non-scalable and error-prone strategy). Equally dangerous is devising ad-hoc
  405. mechanisms to generate URLs that are parallel to the design described by the
  406. URLconf, which can result in the production of URLs that become stale over time.
  407. In other words, what's needed is a DRY mechanism. Among other advantages it
  408. would allow evolution of the URL design without having to go over all the
  409. project source code to search and replace outdated URLs.
  410. The primary piece of information we have available to get a URL is an
  411. identification (e.g. the name) of the view in charge of handling it. Other
  412. pieces of information that necessarily must participate in the lookup of the
  413. right URL are the types (positional, keyword) and values of the view arguments.
  414. Django provides a solution such that the URL mapper is the only repository of
  415. the URL design. You feed it with your URLconf and then it can be used in both
  416. directions:
  417. * Starting with a URL requested by the user/browser, it calls the right Django
  418. view providing any arguments it might need with their values as extracted from
  419. the URL.
  420. * Starting with the identification of the corresponding Django view plus the
  421. values of arguments that would be passed to it, obtain the associated URL.
  422. The first one is the usage we've been discussing in the previous sections. The
  423. second one is what is known as *reverse resolution of URLs*, *reverse URL
  424. matching*, *reverse URL lookup*, or simply *URL reversing*.
  425. Django provides tools for performing URL reversing that match the different
  426. layers where URLs are needed:
  427. * In templates: Using the :ttag:`url` template tag.
  428. * In Python code: Using the :func:`~django.urls.reverse` function.
  429. * In higher level code related to handling of URLs of Django model instances:
  430. The :meth:`~django.db.models.Model.get_absolute_url` method.
  431. Examples
  432. --------
  433. Consider again this URLconf entry::
  434. from django.urls import path
  435. from . import views
  436. urlpatterns = [
  437. # ...
  438. path("articles/<int:year>/", views.year_archive, name="news-year-archive"),
  439. # ...
  440. ]
  441. According to this design, the URL for the archive corresponding to year *nnnn*
  442. is ``/articles/<nnnn>/``.
  443. You can obtain these in template code by using:
  444. .. code-block:: html+django
  445. <a href="{% url 'news-year-archive' 2012 %}">2012 Archive</a>
  446. {# Or with the year in a template context variable: #}
  447. <ul>
  448. {% for yearvar in year_list %}
  449. <li><a href="{% url 'news-year-archive' yearvar %}">{{ yearvar }} Archive</a></li>
  450. {% endfor %}
  451. </ul>
  452. Or in Python code::
  453. from django.http import HttpResponseRedirect
  454. from django.urls import reverse
  455. def redirect_to_year(request):
  456. # ...
  457. year = 2006
  458. # ...
  459. return HttpResponseRedirect(reverse("news-year-archive", args=(year,)))
  460. If, for some reason, it was decided that the URLs where content for yearly
  461. article archives are published at should be changed then you would only need to
  462. change the entry in the URLconf.
  463. In some scenarios where views are of a generic nature, a many-to-one
  464. relationship might exist between URLs and views. For these cases the view name
  465. isn't a good enough identifier for it when comes the time of reversing
  466. URLs. Read the next section to know about the solution Django provides for this.
  467. .. _naming-url-patterns:
  468. Naming URL patterns
  469. ===================
  470. In order to perform URL reversing, you'll need to use **named URL patterns**
  471. as done in the examples above. The string used for the URL name can contain any
  472. characters you like. You are not restricted to valid Python names.
  473. When naming URL patterns, choose names that are unlikely to clash with other
  474. applications' choice of names. If you call your URL pattern ``comment``
  475. and another application does the same thing, the URL that
  476. :func:`~django.urls.reverse()` finds depends on whichever pattern is last in
  477. your project's ``urlpatterns`` list.
  478. Putting a prefix on your URL names, perhaps derived from the application
  479. name (such as ``myapp-comment`` instead of ``comment``), decreases the chance
  480. of collision.
  481. You can deliberately choose the *same URL name* as another application if you
  482. want to override a view. For example, a common use case is to override the
  483. :class:`~django.contrib.auth.views.LoginView`. Parts of Django and most
  484. third-party apps assume that this view has a URL pattern with the name
  485. ``login``. If you have a custom login view and give its URL the name ``login``,
  486. :func:`~django.urls.reverse()` will find your custom view as long as it's in
  487. ``urlpatterns`` after ``django.contrib.auth.urls`` is included (if that's
  488. included at all).
  489. You may also use the same name for multiple URL patterns if they differ in
  490. their arguments. In addition to the URL name, :func:`~django.urls.reverse()`
  491. matches the number of arguments and the names of the keyword arguments. Path
  492. converters can also raise ``ValueError`` to indicate no match, see
  493. :ref:`registering-custom-path-converters` for details.
  494. .. _topics-http-defining-url-namespaces:
  495. URL namespaces
  496. ==============
  497. Introduction
  498. ------------
  499. URL namespaces allow you to uniquely reverse :ref:`named URL patterns
  500. <naming-url-patterns>` even if different applications use the same URL names.
  501. It's a good practice for third-party apps to always use namespaced URLs (as we
  502. did in the tutorial). Similarly, it also allows you to reverse URLs if multiple
  503. instances of an application are deployed. In other words, since multiple
  504. instances of a single application will share named URLs, namespaces provide a
  505. way to tell these named URLs apart.
  506. Django applications that make proper use of URL namespacing can be deployed
  507. more than once for a particular site. For example :mod:`django.contrib.admin`
  508. has an :class:`~django.contrib.admin.AdminSite` class which allows you to
  509. :ref:`deploy more than one instance of the admin <multiple-admin-sites>`. In a
  510. later example, we'll discuss the idea of deploying the polls application from
  511. the tutorial in two different locations so we can serve the same functionality
  512. to two different audiences (authors and publishers).
  513. A URL namespace comes in two parts, both of which are strings:
  514. .. glossary::
  515. application namespace
  516. This describes the name of the application that is being deployed. Every
  517. instance of a single application will have the same application namespace.
  518. For example, Django's admin application has the somewhat predictable
  519. application namespace of ``'admin'``.
  520. instance namespace
  521. This identifies a specific instance of an application. Instance namespaces
  522. should be unique across your entire project. However, an instance namespace
  523. can be the same as the application namespace. This is used to specify a
  524. default instance of an application. For example, the default Django admin
  525. instance has an instance namespace of ``'admin'``.
  526. Namespaced URLs are specified using the ``':'`` operator. For example, the main
  527. index page of the admin application is referenced using ``'admin:index'``. This
  528. indicates a namespace of ``'admin'``, and a named URL of ``'index'``.
  529. Namespaces can also be nested. The named URL ``'sports:polls:index'`` would
  530. look for a pattern named ``'index'`` in the namespace ``'polls'`` that is itself
  531. defined within the top-level namespace ``'sports'``.
  532. .. _topics-http-reversing-url-namespaces:
  533. Reversing namespaced URLs
  534. -------------------------
  535. When given a namespaced URL (e.g. ``'polls:index'``) to resolve, Django splits
  536. the fully qualified name into parts and then tries the following lookup:
  537. #. First, Django looks for a matching :term:`application namespace` (in this
  538. example, ``'polls'``). This will yield a list of instances of that
  539. application.
  540. #. If there is a current application defined, Django finds and returns the URL
  541. resolver for that instance. The current application can be specified with
  542. the ``current_app`` argument to the :func:`~django.urls.reverse()`
  543. function.
  544. The :ttag:`url` template tag uses the namespace of the currently resolved
  545. view as the current application in a
  546. :class:`~django.template.RequestContext`. You can override this default by
  547. setting the current application on the :attr:`request.current_app
  548. <django.http.HttpRequest.current_app>` attribute.
  549. #. If there is no current application, Django looks for a default
  550. application instance. The default application instance is the instance
  551. that has an :term:`instance namespace` matching the :term:`application
  552. namespace` (in this example, an instance of ``polls`` called ``'polls'``).
  553. #. If there is no default application instance, Django will pick the last
  554. deployed instance of the application, whatever its instance name may be.
  555. #. If the provided namespace doesn't match an :term:`application namespace` in
  556. step 1, Django will attempt a direct lookup of the namespace as an
  557. :term:`instance namespace`.
  558. If there are nested namespaces, these steps are repeated for each part of the
  559. namespace until only the view name is unresolved. The view name will then be
  560. resolved into a URL in the namespace that has been found.
  561. Example
  562. ~~~~~~~
  563. To show this resolution strategy in action, consider an example of two instances
  564. of the ``polls`` application from the tutorial: one called ``'author-polls'``
  565. and one called ``'publisher-polls'``. Assume we have enhanced that application
  566. so that it takes the instance namespace into consideration when creating and
  567. displaying polls.
  568. .. code-block:: python
  569. :caption: ``urls.py``
  570. from django.urls import include, path
  571. urlpatterns = [
  572. path("author-polls/", include("polls.urls", namespace="author-polls")),
  573. path("publisher-polls/", include("polls.urls", namespace="publisher-polls")),
  574. ]
  575. .. code-block:: python
  576. :caption: ``polls/urls.py``
  577. from django.urls import path
  578. from . import views
  579. app_name = "polls"
  580. urlpatterns = [
  581. path("", views.IndexView.as_view(), name="index"),
  582. path("<int:pk>/", views.DetailView.as_view(), name="detail"),
  583. ...,
  584. ]
  585. Using this setup, the following lookups are possible:
  586. * If one of the instances is current - say, if we were rendering the detail page
  587. in the instance ``'author-polls'`` - ``'polls:index'`` will resolve to the
  588. index page of the ``'author-polls'`` instance; i.e. both of the following will
  589. result in ``"/author-polls/"``.
  590. In the method of a class-based view::
  591. reverse("polls:index", current_app=self.request.resolver_match.namespace)
  592. and in the template:
  593. .. code-block:: html+django
  594. {% url 'polls:index' %}
  595. * If there is no current instance - say, if we were rendering a page
  596. somewhere else on the site - ``'polls:index'`` will resolve to the last
  597. registered instance of ``polls``. Since there is no default instance
  598. (instance namespace of ``'polls'``), the last instance of ``polls`` that is
  599. registered will be used. This would be ``'publisher-polls'`` since it's
  600. declared last in the ``urlpatterns``.
  601. * ``'author-polls:index'`` will always resolve to the index page of the instance
  602. ``'author-polls'`` (and likewise for ``'publisher-polls'``) .
  603. If there were also a default instance - i.e., an instance named ``'polls'`` -
  604. the only change from above would be in the case where there is no current
  605. instance (the second item in the list above). In this case ``'polls:index'``
  606. would resolve to the index page of the default instance instead of the instance
  607. declared last in ``urlpatterns``.
  608. .. _namespaces-and-include:
  609. URL namespaces and included URLconfs
  610. ------------------------------------
  611. Application namespaces of included URLconfs can be specified in two ways.
  612. Firstly, you can set an ``app_name`` attribute in the included URLconf module,
  613. at the same level as the ``urlpatterns`` attribute. You have to pass the actual
  614. module, or a string reference to the module, to :func:`~django.urls.include`,
  615. not the list of ``urlpatterns`` itself.
  616. .. code-block:: python
  617. :caption: ``polls/urls.py``
  618. from django.urls import path
  619. from . import views
  620. app_name = "polls"
  621. urlpatterns = [
  622. path("", views.IndexView.as_view(), name="index"),
  623. path("<int:pk>/", views.DetailView.as_view(), name="detail"),
  624. ...,
  625. ]
  626. .. code-block:: python
  627. :caption: ``urls.py``
  628. from django.urls import include, path
  629. urlpatterns = [
  630. path("polls/", include("polls.urls")),
  631. ]
  632. The URLs defined in ``polls.urls`` will have an application namespace ``polls``.
  633. Secondly, you can include an object that contains embedded namespace data. If
  634. you ``include()`` a list of :func:`~django.urls.path` or
  635. :func:`~django.urls.re_path` instances, the URLs contained in that object
  636. will be added to the global namespace. However, you can also ``include()`` a
  637. 2-tuple containing:
  638. .. code-block:: text
  639. (<list of path()/re_path() instances>, <application namespace>)
  640. For example::
  641. from django.urls import include, path
  642. from . import views
  643. polls_patterns = (
  644. [
  645. path("", views.IndexView.as_view(), name="index"),
  646. path("<int:pk>/", views.DetailView.as_view(), name="detail"),
  647. ],
  648. "polls",
  649. )
  650. urlpatterns = [
  651. path("polls/", include(polls_patterns)),
  652. ]
  653. This will include the nominated URL patterns into the given application
  654. namespace.
  655. The instance namespace can be specified using the ``namespace`` argument to
  656. :func:`~django.urls.include`. If the instance namespace is not specified,
  657. it will default to the included URLconf's application namespace. This means
  658. it will also be the default instance for that namespace.