Skip to content

Added settings.py modification after creating a template #115

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion template_extending/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,15 @@ Create a `templates/mysite/base.html` file. You also need to create `templates`
└───mysite
base.html

Then open it up and copy everything from `post_list.html` to `base.html` file, like this:
Now have to tell Django that you're making a template file and it's right there in the templates directory! Open up the `mysite/settings.py` file and add the following lines at the bottom:

TEMPLATE_DIRS = (
os.path.join(BASE_DIR, "templates"),
)

This way Django will know where to find your it.

Then open up the `base.html` file you just made and copy everything from `post_list.html` to it, like this:

{% load staticfiles %}
<html>
Expand Down