diff options
author | CruiseDevice | 2019-02-28 15:59:04 +0530 |
---|---|---|
committer | CruiseDevice | 2019-02-28 16:02:42 +0530 |
commit | f8fdaabc6725ac4019e6017b3f41c29341e16218 (patch) | |
tree | 5790e720091d31298bad4f3bc7917a59a2accc67 /yaksh | |
parent | bc275976bcba4624de66a2fe69d147a32d50a37d (diff) | |
download | online_test-f8fdaabc6725ac4019e6017b3f41c29341e16218.tar.gz online_test-f8fdaabc6725ac4019e6017b3f41c29341e16218.tar.bz2 online_test-f8fdaabc6725ac4019e6017b3f41c29341e16218.zip |
Use built-in django url tag inplace of hard-code URL in template
Diffstat (limited to 'yaksh')
-rw-r--r-- | yaksh/templates/yaksh/course_modules.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yaksh/templates/yaksh/course_modules.html b/yaksh/templates/yaksh/course_modules.html index 0c75b91..e1fdc51 100644 --- a/yaksh/templates/yaksh/course_modules.html +++ b/yaksh/templates/yaksh/course_modules.html @@ -20,7 +20,7 @@ <div class="col h4"> {{ course.name }} </div> <div class = "col"> {% if course.has_lessons %} - <a href="{{URL_ROOT}}/exam/download_course/{{course.id}}" data-toggle="tooltip" title="Download course content" class="btn btn-primary pull-right"> + <a href="{% url 'yaksh:download_course' course.id %}" data-toggle="tooltip" title="Download course content" class="btn btn-primary pull-right"> Download Course </a> {% endif %} |