diff -r e338eaeccad7 -r 39f83b4cf557 templates/task/assignpynts.html
--- a/templates/task/assignpynts.html Fri Jan 14 00:57:39 2011 +0530
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,42 +0,0 @@
-{% extends 'base.html' %}
-{% block title %}
- {{task.title}}
-{% endblock %}
-{% block content %}
- Click here to return to the task.
-
-
- {% if prev_pynts %}
- Mark task as complete.
-
- {% endif %}
- {% if pynt_requests %}
-
Previous pynts:
- {% for req in pynt_requests %}
-
- {{req.sent_by.username}} requested assigning of {{req.pynts}} pynts to
- {{req.receiving_user.username}}
- on {{req.creation_date|date:"D d M Y"}} at {{req.creation_date|time:"H:i"}}
- {% if req.is_replied %}
- status:
- {% if req.reply %}
- Approved by {{req.replied_by.username}}
- on {{req.reply_date|date:"D d M Y"}} at {{req.reply_date|time:"H:i"}}
- {% else %}
- Rejected by {{req.replied_by.username}}
- on {{req.reply_date|date:"D d M Y"}} at {{req.reply_date|time:"H:i"}}
- {% if req.remarks %}
- Reason: {{req.remarks}}
- {% endif %}
- {% endif %}
- {% else %}
- status: Request pending
- {% endif %}
- {% endfor %}
- {% else %}
- No assigning of pynts has been made for this task.
- {% endif %}
-{% endblock %}