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

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

+

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

{% for guide, tags in guides %}

{{ guide.name }}    {% for t in tags %}{{ t }} {% endfor %}

{% endfor %} diff --git a/studyguides/templates/home.html b/studyguides/templates/home.html index af57dfd..9aaf299 100644 --- a/studyguides/templates/home.html +++ b/studyguides/templates/home.html @@ -8,7 +8,7 @@

{{ subject.name }}

{% for course in courses %} -

{{ course.name }}

+

{{ course.name }}

{% endfor %} {% endfor %}
diff --git a/studyguides/templates/subject.html b/studyguides/templates/subject.html index 5e372b0..ffab1ec 100644 --- a/studyguides/templates/subject.html +++ b/studyguides/templates/subject.html @@ -2,7 +2,7 @@

All / {{subject.name}}

{% for course in courses %} -

{{ course.name }}

+

{{ course.name }}

{% endfor %}
{% endblock %}