From a337a0f4680db3918243289bd92f16864fa50e3c Mon Sep 17 00:00:00 2001 From: Akash Bhave Date: Thu, 15 Oct 2020 16:58:58 -0400 Subject: [PATCH] Show teacher for guides if they are defined --- studyguides/static/base.css | 7 ++++++- studyguides/templates/course.html | 2 +- studyguides/templates/home.html | 2 +- studyguides/templates/subject.html | 2 +- 4 files changed, 9 insertions(+), 4 deletions(-) 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 %}