pytask/templates/task/view_report.html
author Madhusudan.C.S <madhusudancs@gmail.com>
Fri, 04 Feb 2011 16:38:21 +0530
changeset 558 fd3e6f5f01bd
parent 431 fcc87a3f0311
permissions -rw-r--r--
Use the form helpers templatetag module in the addreviewer template.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
431
fcc87a3f0311 Huh, please don't tell me I will have to refactor so much code again.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 383
diff changeset
     1
{% extends "base.html" %}
fcc87a3f0311 Huh, please don't tell me I will have to refactor so much code again.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 383
diff changeset
     2
383
4252da60a4ef submit report works fine
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     3
{% block content %}
4252da60a4ef submit report works fine
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     4
Report for {{report.task.title}} <br />
4252da60a4ef submit report works fine
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     5
4252da60a4ef submit report works fine
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     6
<hr />
431
fcc87a3f0311 Huh, please don't tell me I will have to refactor so much code again.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 383
diff changeset
     7
Description:
fcc87a3f0311 Huh, please don't tell me I will have to refactor so much code again.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 383
diff changeset
     8
<br />
fcc87a3f0311 Huh, please don't tell me I will have to refactor so much code again.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 383
diff changeset
     9
383
4252da60a4ef submit report works fine
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    10
{{ report.data|linebreaksbr }}
431
fcc87a3f0311 Huh, please don't tell me I will have to refactor so much code again.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 383
diff changeset
    11
383
4252da60a4ef submit report works fine
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    12
<hr />
431
fcc87a3f0311 Huh, please don't tell me I will have to refactor so much code again.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 383
diff changeset
    13
Summary: {{ report.summary }}
fcc87a3f0311 Huh, please don't tell me I will have to refactor so much code again.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 383
diff changeset
    14
<br />
383
4252da60a4ef submit report works fine
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    15
<hr />
431
fcc87a3f0311 Huh, please don't tell me I will have to refactor so much code again.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 383
diff changeset
    16
fcc87a3f0311 Huh, please don't tell me I will have to refactor so much code again.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 383
diff changeset
    17
Attachment: <a href="{{report.attachment.url}}">{{report.attachment.name}}</a>
fcc87a3f0311 Huh, please don't tell me I will have to refactor so much code again.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 383
diff changeset
    18
 
383
4252da60a4ef submit report works fine
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    19
{% endblock %}