diff options
| author | Tim Graham <timograham@gmail.com> | 2024-07-12 14:09:28 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-12 15:09:28 -0300 |
| commit | dfd63ff43408e7901cc214b0482a7f844244d439 (patch) | |
| tree | fedbc359d2492d237859e612a75651ed0799f47d /docs/intro | |
| parent | 86e13843c2ab510fba1de84588efe7fd03555531 (diff) | |
Refs #35506 -- Reverted "global URLconf" to "root URLconf" in tutorial 1.
Diffstat (limited to 'docs/intro')
| -rw-r--r-- | docs/intro/tutorial01.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/intro/tutorial01.txt b/docs/intro/tutorial01.txt index d00dd626ce..db59ca49df 100644 --- a/docs/intro/tutorial01.txt +++ b/docs/intro/tutorial01.txt @@ -256,7 +256,7 @@ Your app directory should now look like: urls.py views.py -The next step is to configure the global URLconf in the ``mysite`` project to +The next step is to configure the root URLconf in the ``mysite`` project to include the URLconf defined in ``polls.urls``. To do this, add an import for ``django.urls.include`` in ``mysite/urls.py`` and insert an :func:`~django.urls.include` in the ``urlpatterns`` list, so you have: |
