From 9185b3335b00e51c133500a5a431d6635a7dc056 Mon Sep 17 00:00:00 2001 From: Phillip Shiu Date: Fri, 10 Sep 2021 12:43:57 -0400 Subject: [PATCH] fix: correct relative paths in templates to track_selection.html --- lms/templates/course_modes/fbe.html | 2 +- lms/templates/course_modes/unfbe.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lms/templates/course_modes/fbe.html b/lms/templates/course_modes/fbe.html index 7bc64b60ff..08a62736df 100644 --- a/lms/templates/course_modes/fbe.html +++ b/lms/templates/course_modes/fbe.html @@ -4,7 +4,7 @@ ## of the course unavailable (gated content). <%page expression_filter="h"/> -<%inherit file="../track_selection.html" /> +<%inherit file="track_selection.html" /> <%! from django.utils.translation import ugettext as _ from openedx.core.djangolib.markup import HTML, Text diff --git a/lms/templates/course_modes/unfbe.html b/lms/templates/course_modes/unfbe.html index f3e8268584..6b3310bfdd 100644 --- a/lms/templates/course_modes/unfbe.html +++ b/lms/templates/course_modes/unfbe.html @@ -8,7 +8,7 @@ ## course access duration. <%page expression_filter="h"/> -<%inherit file="../track_selection.html" /> +<%inherit file="track_selection.html" /> <%! from django.utils.translation import ugettext as _ from openedx.core.djangolib.markup import HTML, Text