In Django Girls Tutorial: Extensions, chapter 2: Secure your website / Login user there is a bug. Tutorial says you should write the template in mysite directory (mysite/templates/registration/login.html), but Django doesn't search for templates in that directory.
You can make the folder in blog/templates directory and it will work.
If you do so, remember to change the code also:
{% extends "mysite/base.html" %} to {% extends "blog/base.html" %}
In Django Girls Tutorial: Extensions, chapter 2: Secure your website / Login user there is a bug. Tutorial says you should write the template in mysite directory (
mysite/templates/registration/login.html), but Django doesn't search for templates in that directory.You can make the folder in
blog/templatesdirectory and it will work.If you do so, remember to change the code also:
{% extends "mysite/base.html" %}to{% extends "blog/base.html" %}