1
0
mirror of https://github.com/django/django.git synced 2025-03-13 02:40:47 +00:00

[5.1.x] Explained exception to using include() within urlpatterns in tutorial 1.

Backport of 40a60d589e1d0d290c3b79c7e97d9cd0c94e52e3 from main.
This commit is contained in:
Chiara Mezzavilla 2024-10-09 16:46:26 +02:00 committed by Natalia
parent 13d352eb32
commit b852989c30

View File

@ -290,7 +290,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: