From 18bc36ff23902e8d3cccf72d7fc02d31745766fe Mon Sep 17 00:00:00 2001
From: lauren
Date: Tue, 27 Oct 2020 10:58:01 -0400
Subject: [PATCH] remove absolute urls
---
studyguides/templates/course.html | 4 ++--
studyguides/templates/home.html | 4 ++--
studyguides/templates/subject.html | 4 ++--
3 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/studyguides/templates/course.html b/studyguides/templates/course.html
index 391308c..de37bea 100644
--- a/studyguides/templates/course.html
+++ b/studyguides/templates/course.html
@@ -1,8 +1,8 @@
{% extends "base.html" %} {% load static %} {% block main %}
-
+
{% for guide, tags in guides %}
- {{ guide.name }} {% for t in tags %}{{ t }} {% endfor %}
+ {{ guide.name }} {% for t in tags %}{{ t }} {% endfor %}
{% endfor %}
{% endblock %}
diff --git a/studyguides/templates/home.html b/studyguides/templates/home.html
index 27717e8..af57dfd 100644
--- a/studyguides/templates/home.html
+++ b/studyguides/templates/home.html
@@ -5,10 +5,10 @@
{% for subject, courses in subjects %}
- {{ subject.name }}
+ {{ 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 bd576cf..5e372b0 100644
--- a/studyguides/templates/subject.html
+++ b/studyguides/templates/subject.html
@@ -1,8 +1,8 @@
{% extends "base.html" %} {% load static %} {% block main %}
-
+
{% for course in courses %}
- {{ course.name }}
+ {{ course.name }}
{% endfor %}
{% endblock %}