diff options
author | CruiseDevice | 2019-07-03 17:31:38 +0530 |
---|---|---|
committer | CruiseDevice | 2019-07-03 17:32:55 +0530 |
commit | 745426ecc20bba58fd3721a960057ad8d41e3b99 (patch) | |
tree | ea74521ca77df859493cfcc1bd60f493dfab7311 /yaksh/templates | |
parent | dbe52125fd83370dea94ac9c8d870f572f0a14a7 (diff) | |
download | online_test-745426ecc20bba58fd3721a960057ad8d41e3b99.tar.gz online_test-745426ecc20bba58fd3721a960057ad8d41e3b99.tar.bz2 online_test-745426ecc20bba58fd3721a960057ad8d41e3b99.zip |
Minor changes
- Remove commented code.
- Add active class to the tab selected on sidebar.
Diffstat (limited to 'yaksh/templates')
-rw-r--r-- | yaksh/templates/yaksh/quiz.html | 4 | ||||
-rw-r--r-- | yaksh/templates/yaksh/unit.html | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/yaksh/templates/yaksh/quiz.html b/yaksh/templates/yaksh/quiz.html index fca0cad..3240244 100644 --- a/yaksh/templates/yaksh/quiz.html +++ b/yaksh/templates/yaksh/quiz.html @@ -38,13 +38,13 @@ {% for unit in module.get_learning_units %} {% if unit.type == 'lesson' %} <li class="nav-item"> - <a class="nav-link" href="../{{unit.lesson.name|replace_spaces}}/{{unit.lesson.name|replace_spaces}}.html"> + <a class="nav-link {% if unit.lesson.name == lesson.name %}active{% endif %}" href="../{{unit.lesson.name|replace_spaces}}/{{unit.lesson.name|replace_spaces}}.html"> {{unit.lesson.name}} </a> </li> {% else %} <li class="nav-item"> - <a class="nav-link" href="../{{unit.quiz.description|replace_spaces}}/{{unit.quiz.description|replace_spaces}}.html"> + <a class="nav-link {% if unit.lesson.name == lesson.name %}active{% endif %}" href="../{{unit.quiz.description|replace_spaces}}/{{unit.quiz.description|replace_spaces}}.html"> {{unit.quiz.description}} </a> </li> diff --git a/yaksh/templates/yaksh/unit.html b/yaksh/templates/yaksh/unit.html index 1ceffe8..45092a6 100644 --- a/yaksh/templates/yaksh/unit.html +++ b/yaksh/templates/yaksh/unit.html @@ -38,13 +38,13 @@ {% for unit in module.get_learning_units %} {% if unit.type == 'lesson' %} <li class="nav-item"> - <a class="nav-link" href="../{{unit.lesson.name|replace_spaces}}/{{unit.lesson.name|replace_spaces}}.html"> + <a class="nav-link {% if unit.lesson.name == lesson.name %}active{% endif %}" href="../{{unit.lesson.name|replace_spaces}}/{{unit.lesson.name|replace_spaces}}.html"> {{unit.lesson.name}} </a> </li> {% else %} <li class="nav-item"> - <a class="nav-link" href="../{{unit.quiz.description|replace_spaces}}/{{unit.quiz.description|replace_spaces}}.html"> + <a class="nav-link {% if unit.lesson.name == lesson.name %}active{% endif %}" href="../{{unit.quiz.description|replace_spaces}}/{{unit.quiz.description|replace_spaces}}.html"> {{unit.quiz.description}} </a> </li> |