pytask/templates/task/submit_report.html
author Madhusudan.C.S <madhusudancs@gmail.com>
Fri, 04 Feb 2011 16:38:21 +0530
changeset 558 fd3e6f5f01bd
parent 435 1217d808d70f
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
435
1217d808d70f Use the new forms tags and fix the styling.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 431
diff changeset
     3
{% load form_helpers %}
1217d808d70f Use the new forms tags and fix the styling.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 431
diff changeset
     4
383
4252da60a4ef submit report works fine
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     5
{% block title %}
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
     6
  {{task.title}}
383
4252da60a4ef submit report works fine
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     7
{% endblock %}
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
     8
383
4252da60a4ef submit report works fine
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     9
{% block content %}
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
    10
  {% as_div_form form "Submit Report" csrf_token "Submit" "" "True" %}
383
4252da60a4ef submit report works fine
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    11
{% endblock %}