diff --git a/studyguides/static/base.css b/studyguides/static/base.css index 79d4cf2..01c58fe 100644 --- a/studyguides/static/base.css +++ b/studyguides/static/base.css @@ -25,10 +25,15 @@ main { margin: 30px; } -.color-primary { +.item { color: #568ea3; } +.teacher { + color: #a26769; + font-weight: bold; +} + h1 { opacity: 0.5; transition: all 0.2s ease; diff --git a/studyguides/templates/course.html b/studyguides/templates/course.html index e67fb30..db6948c 100644 --- a/studyguides/templates/course.html +++ b/studyguides/templates/course.html @@ -2,7 +2,7 @@

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

{% for guide in guides %} -

{{ guide.name }}

+

{% if guide.teacher %}[{{guide.teacher}}] {% endif %}{{ guide.name }}

{% endfor %}
{% endblock %} diff --git a/studyguides/templates/home.html b/studyguides/templates/home.html index 7a1a271..e3b6c88 100644 --- a/studyguides/templates/home.html +++ b/studyguides/templates/home.html @@ -6,7 +6,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 bd22f6a..bd576cf 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 %}