diff options
author | Nishanth Amuluru | 2011-01-06 11:54:57 +0530 |
---|---|---|
committer | Nishanth Amuluru | 2011-01-06 11:54:57 +0530 |
commit | 0e7872852f7b99fbc158c0159a2c8081845408fa (patch) | |
tree | 01706a25994d664eb0d6af25a816d8197b1170ad | |
parent | 47416d529965ee1d21aa240d197fc79cb4970fa7 (diff) | |
download | pytask-0e7872852f7b99fbc158c0159a2c8081845408fa.tar.gz pytask-0e7872852f7b99fbc158c0159a2c8081845408fa.tar.bz2 pytask-0e7872852f7b99fbc158c0159a2c8081845408fa.zip |
the report page now displays url of the uploaded attachment
-rw-r--r-- | templates/task/report.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/task/report.html b/templates/task/report.html index 1856453..e1a2aa3 100644 --- a/templates/task/report.html +++ b/templates/task/report.html @@ -7,7 +7,7 @@ There are no reports submitted as of now {% else %} {% for rep in old_reports %} -{{rep.submitted_by}} | {{rep.attachment}} <br /> +{{rep.submitted_by}} | <a href="{{rep.attachment.url}}">{{rep.attachment.name}}</a> <br /> {% endfor %} {% endif %} <hr /> |