diff --git a/studyguides/templates/course.html b/studyguides/templates/course.html index dc9da96..e67fb30 100644 --- a/studyguides/templates/course.html +++ b/studyguides/templates/course.html @@ -1,6 +1,6 @@ -{% extends "base.html" %} {% block main %} +{% extends "base.html" %} {% load static %} {% block main %}
-

{{subject.name}} / {{ course.name }}

+

All / {{subject.name}} / {{course.name}}

{% for guide in guides %}

{{ guide.name }}

{% endfor %} diff --git a/studyguides/templates/home.html b/studyguides/templates/home.html index d566e1d..7a1a271 100644 --- a/studyguides/templates/home.html +++ b/studyguides/templates/home.html @@ -1,9 +1,9 @@ -{% extends "base.html" %} {% block main %} +{% extends "base.html" %} {% load static %} {% block main %}
-

Subjects

+

All

{% for subject, courses in subjects %} -

{{ subject.name }}

+

{{ subject.name }}

{% for course in courses %}

{{ course.name }}

diff --git a/studyguides/templates/subject.html b/studyguides/templates/subject.html index 8e58ec0..bd22f6a 100644 --- a/studyguides/templates/subject.html +++ b/studyguides/templates/subject.html @@ -1,6 +1,6 @@ -{% extends "base.html" %} {% block main %} +{% extends "base.html" %} {% load static %} {% block main %}
-

{{ subject.name }}

+

All / {{subject.name}}

{% for course in courses %}

{{ course.name }}

{% endfor %}