diff -r 9cf299c47990 -r fcbdf372857c templates/user/view_request.html
--- a/templates/user/view_request.html Wed Feb 24 19:52:42 2010 +0530
+++ b/templates/user/view_request.html Wed Feb 24 20:13:20 2010 +0530
@@ -1,6 +1,6 @@
{% extends 'base.html' %}
{% block content %}
- From: {{req.by.username}}
+ From: {{req.sent_by.username}}
To:
{% for to_user in sent_users %}
{{to_user.username}},
@@ -8,17 +8,19 @@
Message:
{% ifequal "PY" req.role %}
- {{req.by.username}} assigned {{req.pynts}} pynts to
- {{req.assigned_to.username}} for the task
+ {{req.sent_by.username}} assigned {{req.pynts}} pynts to
+ {{req.receiving_user.username}} for the task
{{req.task.title}}
Please click yes/no
-