Make sure website extends website/base.html to avoid override collision

This commit is contained in:
Griatch 2019-02-19 20:21:45 +01:00
parent be40993f7b
commit c0986a8ec2
3 changed files with 3 additions and 3 deletions

View file

@ -1,4 +1,4 @@
{% extends "base.html" %}
{% extends "website/base.html" %}
{% block titleblock %}Admin{% endblock %}

View file

@ -1,4 +1,4 @@
{% extends "base.html" %}
{% extends "website/base.html" %}
{% block titleblock %}Home{% endblock %}

View file

@ -1,4 +1,4 @@
{% extends "base.html" %}
{% extends "website/base.html" %}
{% block titleblock %}To Be Implemented{% endblock %}