| author | Nishanth Amuluru <nishanth@fossee.in> |
| Wed, 05 Jan 2011 22:22:10 +0530 | |
| changeset 218 | 59107ce0a618 |
| parent 196 | 2759d422ad89 |
| permissions | -rw-r--r-- |
| 83 | 1 |
{% extends 'base.html' %}
|
2 |
{% block content %}
|
|
|
133
34187a80d279
added next and previous capabilities to requests and notifications.
nishanth
parents:
107
diff
changeset
|
3 |
{% if newest %}
|
|
34187a80d279
added next and previous capabilities to requests and notifications.
nishanth
parents:
107
diff
changeset
|
4 |
<a href="/user/requests/rid={{newest.id}}"><<newest</a>
|
|
34187a80d279
added next and previous capabilities to requests and notifications.
nishanth
parents:
107
diff
changeset
|
5 |
{% endif %}
|
|
34187a80d279
added next and previous capabilities to requests and notifications.
nishanth
parents:
107
diff
changeset
|
6 |
{% if newer %}
|
|
34187a80d279
added next and previous capabilities to requests and notifications.
nishanth
parents:
107
diff
changeset
|
7 |
<a href="/user/requests/rid={{newer.id}}"><newer</a>
|
|
34187a80d279
added next and previous capabilities to requests and notifications.
nishanth
parents:
107
diff
changeset
|
8 |
{% endif %}
|
|
34187a80d279
added next and previous capabilities to requests and notifications.
nishanth
parents:
107
diff
changeset
|
9 |
{% if older %}
|
|
34187a80d279
added next and previous capabilities to requests and notifications.
nishanth
parents:
107
diff
changeset
|
10 |
<a href="/user/requests/rid={{older.id}}">older></a>
|
|
34187a80d279
added next and previous capabilities to requests and notifications.
nishanth
parents:
107
diff
changeset
|
11 |
{% endif %}
|
|
34187a80d279
added next and previous capabilities to requests and notifications.
nishanth
parents:
107
diff
changeset
|
12 |
{% if oldest %}
|
|
34187a80d279
added next and previous capabilities to requests and notifications.
nishanth
parents:
107
diff
changeset
|
13 |
<a href="/user/requests/rid={{oldest.id}}">oldest>></a>
|
|
34187a80d279
added next and previous capabilities to requests and notifications.
nishanth
parents:
107
diff
changeset
|
14 |
{% endif %}
|
|
34187a80d279
added next and previous capabilities to requests and notifications.
nishanth
parents:
107
diff
changeset
|
15 |
<br /> |
| 86 | 16 |
From: <a href="/user/view/uid={{req.sent_by.id}}">{{req.sent_by.username}}</a><br />
|
| 83 | 17 |
To: |
18 |
{% for to_user in sent_users %}
|
|
|
133
34187a80d279
added next and previous capabilities to requests and notifications.
nishanth
parents:
107
diff
changeset
|
19 |
<a href="/user/view/uid={{to_user.id}}">{{to_user.username}}</a>
|
| 83 | 20 |
{% endfor %}
|
21 |
<br /> |
|
|
196
2759d422ad89
fixed the time display bug in view_request template.
nishanth
parents:
164
diff
changeset
|
22 |
sent on {{req.sent_date|date:"D d M Y"}} at {{req.sent_date|time:"H:i"}}<br />
|
| 83 | 23 |
Message: <br /> |
24 |
{% ifequal "PY" req.role %}
|
|
| 86 | 25 |
<a href="/user/view/uid={{req.sent_by.id}}">{{req.sent_by.username}}</a> assigned {{req.pynts}} pynts to
|
26 |
<a href="/user/view/uid={{req.receiving_user.id}}">{{req.receiving_user.username}}</a> for the task
|
|
| 83 | 27 |
<a href="/task/view/tid={{req.task.id}}">{{req.task.title}}</a><br />
|
|
164
bfe621e64a16
modified the look of browse_requests page task_view page and view_request page.
nishanth
parents:
134
diff
changeset
|
28 |
{% else %}
|
|
106
3c3ea2a3f92a
now view request shows a better message if role is MT .
nishanth
parents:
104
diff
changeset
|
29 |
|
|
164
bfe621e64a16
modified the look of browse_requests page task_view page and view_request page.
nishanth
parents:
134
diff
changeset
|
30 |
{% ifequal "MT" req.role %}
|
|
218
59107ce0a618
Replaced the word mentor with reviewer
Nishanth Amuluru <nishanth@fossee.in>
parents:
196
diff
changeset
|
31 |
<a href="/user/view/uid={{req.sent_by.id}}">{{req.sent_by.username}}</a> requested you to act as a reviewer for the task
|
|
164
bfe621e64a16
modified the look of browse_requests page task_view page and view_request page.
nishanth
parents:
134
diff
changeset
|
32 |
<a href="/task/view/tid={{req.task.id}}">{{req.task.title}}</a><br />
|
| 107 | 33 |
{% else %}
|
|
164
bfe621e64a16
modified the look of browse_requests page task_view page and view_request page.
nishanth
parents:
134
diff
changeset
|
34 |
You have been requested to act as |
|
bfe621e64a16
modified the look of browse_requests page task_view page and view_request page.
nishanth
parents:
134
diff
changeset
|
35 |
{% ifequal "AD" req.role %}
|
|
bfe621e64a16
modified the look of browse_requests page task_view page and view_request page.
nishanth
parents:
134
diff
changeset
|
36 |
an Admin |
| 107 | 37 |
{% else %}
|
|
164
bfe621e64a16
modified the look of browse_requests page task_view page and view_request page.
nishanth
parents:
134
diff
changeset
|
38 |
{% ifequal "MG" req.role %}
|
|
bfe621e64a16
modified the look of browse_requests page task_view page and view_request page.
nishanth
parents:
134
diff
changeset
|
39 |
a Manager |
|
bfe621e64a16
modified the look of browse_requests page task_view page and view_request page.
nishanth
parents:
134
diff
changeset
|
40 |
{% else %}
|
|
bfe621e64a16
modified the look of browse_requests page task_view page and view_request page.
nishanth
parents:
134
diff
changeset
|
41 |
a Developer |
|
bfe621e64a16
modified the look of browse_requests page task_view page and view_request page.
nishanth
parents:
134
diff
changeset
|
42 |
{% endifequal %}
|
| 107 | 43 |
{% endifequal %}
|
|
164
bfe621e64a16
modified the look of browse_requests page task_view page and view_request page.
nishanth
parents:
134
diff
changeset
|
44 |
for the website by <a href="/user/view/uid={{req.sent_by.id}}">{{req.sent_by.username}}</a>.<br />
|
| 107 | 45 |
{% endifequal %}
|
| 83 | 46 |
{% endifequal %}
|
|
164
bfe621e64a16
modified the look of browse_requests page task_view page and view_request page.
nishanth
parents:
134
diff
changeset
|
47 |
<br /> |
| 83 | 48 |
|
|
106
3c3ea2a3f92a
now view request shows a better message if role is MT .
nishanth
parents:
104
diff
changeset
|
49 |
Please accept or reject the request.<br /> |
| 86 | 50 |
<form action="yes/" method="post"> |
|
106
3c3ea2a3f92a
now view request shows a better message if role is MT .
nishanth
parents:
104
diff
changeset
|
51 |
<input value="Accept" type="submit"> |
| 86 | 52 |
</form> |
53 |
<form action="no/" method="post"> |
|
| 104 | 54 |
Remarks: <input type="text" name="remarks"> |
|
106
3c3ea2a3f92a
now view request shows a better message if role is MT .
nishanth
parents:
104
diff
changeset
|
55 |
<input value="Reject" type="submit"> |
| 86 | 56 |
</form> |
57 |
<a href="/user/requests/">Click here</a> to return to the requests page. |
|
58 |
||
| 83 | 59 |
{% endblock %}
|