summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCruiseDevice2019-02-12 16:56:59 +0530
committerCruiseDevice2019-02-18 11:40:37 +0530
commit31336af1487201b05681c039c839a9213143fcf2 (patch)
tree4dbbf411d2972992b0a1ac2888a32df63adf2148
parent51fc3bfee398da2781228a3b3bf32cb5ef3abc6b (diff)
downloadonline_test-31336af1487201b05681c039c839a9213143fcf2.tar.gz
online_test-31336af1487201b05681c039c839a9213143fcf2.tar.bz2
online_test-31336af1487201b05681c039c839a9213143fcf2.zip
Fix download file for a question in quiz
-rw-r--r--yaksh/models.py3
-rw-r--r--yaksh/templates/yaksh/question.html2
2 files changed, 4 insertions, 1 deletions
diff --git a/yaksh/models.py b/yaksh/models.py
index cce90e7..7b80306 100644
--- a/yaksh/models.py
+++ b/yaksh/models.py
@@ -1408,6 +1408,9 @@ class FileUpload(models.Model):
self.hide = True
self.save()
+ def get_filename(self):
+ return os.path.basename(self.file.name)
+
###############################################################################
class Answer(models.Model):
diff --git a/yaksh/templates/yaksh/question.html b/yaksh/templates/yaksh/question.html
index da77702..3500132 100644
--- a/yaksh/templates/yaksh/question.html
+++ b/yaksh/templates/yaksh/question.html
@@ -160,7 +160,7 @@ question_type = "{{ question.type }}"
<span> Files to download for this question </span> <hr>
{% for f_name in files %}
<div class="yakshwell">
- <a href="{{f.file.url}}" class="btn btn-outline-secondary"><b>{{forloop.counter}}.</b> {{f_name.file.name}}</a>
+ <a href="{{f_name.file.url}}" class="btn btn-outline-secondary" target="_blank"><b>{{forloop.counter}}.</b> {{f_name.get_filename}}</a>
<br>
</div>
{% endfor %}