summaryrefslogtreecommitdiff
path: root/docs/intro/reusable-apps.txt
diff options
context:
space:
mode:
Diffstat (limited to 'docs/intro/reusable-apps.txt')
-rw-r--r--docs/intro/reusable-apps.txt14
1 files changed, 7 insertions, 7 deletions
diff --git a/docs/intro/reusable-apps.txt b/docs/intro/reusable-apps.txt
index e2c25f3525..a9c0768e3b 100644
--- a/docs/intro/reusable-apps.txt
+++ b/docs/intro/reusable-apps.txt
@@ -57,7 +57,7 @@ After the previous tutorials, our project should look like this:
.. code-block:: text
- mysite/
+ djangotutorial/
manage.py
mysite/
__init__.py
@@ -90,12 +90,12 @@ After the previous tutorials, our project should look like this:
admin/
base_site.html
-You created ``mysite/templates`` in :doc:`Tutorial 7 </intro/tutorial07>`,
-and ``polls/templates`` in :doc:`Tutorial 3 </intro/tutorial03>`. Now perhaps
-it is clearer why we chose to have separate template directories for the
-project and application: everything that is part of the polls application is in
-``polls``. It makes the application self-contained and easier to drop into a
-new project.
+You created ``djangotutorial/templates`` in :doc:`Tutorial 7
+</intro/tutorial07>`, and ``polls/templates`` in
+:doc:`Tutorial 3 </intro/tutorial03>`. Now perhaps it is clearer why we chose
+to have separate template directories for the project and application:
+everything that is part of the polls application is in ``polls``. It makes the
+application self-contained and easier to drop into a new project.
The ``polls`` directory could now be copied into a new Django project and
immediately reused. It's not quite ready to be published though. For that, we