fix: correct relative paths in templates to track_selection.html

This commit is contained in:
Phillip Shiu
2021-09-10 12:43:57 -04:00
parent 9d259d7a99
commit 9185b3335b
2 changed files with 2 additions and 2 deletions

View File

@@ -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

View File

@@ -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