0
0
mirror of https://github.com/django/django.git synced 2024-11-25 07:59:34 +01:00

Explained exception to using include() within urlpatterns in tutorial 1.

This commit is contained in:
Chiara Mezzavilla 2024-10-09 16:46:26 +02:00 committed by GitHub
parent d4e4520efb
commit 40a60d589e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -293,7 +293,8 @@ app will still work.
.. admonition:: When to use :func:`~django.urls.include()`
You should always use ``include()`` when you include other URL patterns.
``admin.site.urls`` is the only exception to this.
The only exception is ``admin.site.urls``, which is a pre-built URLconf
provided by Django for the default admin site.
You have now wired an ``index`` view into the URLconf. Verify it's working with
the following command: