1
0
mirror of https://github.com/django/django.git synced 2025-10-24 06:06:09 +00:00

Changed "mysite/mytemplates/" -> "mysite/templates" in tutorial.

Thanks James Pic.
This commit is contained in:
Tim Graham
2013-02-23 09:19:32 -05:00
parent 6bbf4e57c8
commit 1b7fb29dfb
3 changed files with 8 additions and 9 deletions

View File

@@ -300,7 +300,7 @@ Django knows to find the polls templates even though we didn't modify
and it would work perfectly well. However, this template belongs to the
polls application, so unlike the admin template we created in the previous
tutorial, we'll put this one in the application's template directory
(``polls/templates``) rather than the project's (``mytemplates``). We'll
(``polls/templates``) rather than the project's (``templates``). We'll
discuss in more detail in the :doc:`reusable apps tutorial
</intro/reusable-apps>` *why* we do this.