urls.txt 32 KB

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