pytask/templates/task/addreviewer.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: 381
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: 381
diff changeset
     2
558
fd3e6f5f01bd Use the form helpers templatetag module in the addreviewer template.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 431
diff changeset
     3
fd3e6f5f01bd Use the form helpers templatetag module in the addreviewer template.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 431
diff changeset
     4
{% load form_helpers %}
fd3e6f5f01bd Use the form helpers templatetag module in the addreviewer template.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 431
diff changeset
     5
fd3e6f5f01bd Use the form helpers templatetag module in the addreviewer template.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 431
diff changeset
     6
381
da4c6b1cec7d add reviewer works now
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     7
{% 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: 381
diff changeset
     8
  Select a user as a reviewer for this task.<br />
fcc87a3f0311 Huh, please don't tell me I will have to refactor so much code again.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 381
diff changeset
     9
fcc87a3f0311 Huh, please don't tell me I will have to refactor so much code again.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 381
diff changeset
    10
  {% as_div_form form "Add Reviewer Form" csrf_token "Select" %}
381
da4c6b1cec7d add reviewer works now
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    11
{% endblock %}