author | nishanth |
Mon, 01 Mar 2010 05:41:12 +0530 | |
changeset 159 | a74a32a5a3e1 |
parent 156 | 7cad1e92713d |
child 162 | d378eff02f2e |
permissions | -rw-r--r-- |
25
c0e4fc8b8b5b
added the functionality to assign a task to one of the claimed users.
nishanth
parents:
diff
changeset
|
1 |
{% extends 'base.html' %} |
c0e4fc8b8b5b
added the functionality to assign a task to one of the claimed users.
nishanth
parents:
diff
changeset
|
2 |
{% block content %} |
33
0d0ea7b188d5
fixed a bug in templates/task/claim.html which required modification of views/task.py; also changed the no.of char limit on task title .
nishanth
parents:
25
diff
changeset
|
3 |
{% if claims %} |
0d0ea7b188d5
fixed a bug in templates/task/claim.html which required modification of views/task.py; also changed the no.of char limit on task title .
nishanth
parents:
25
diff
changeset
|
4 |
List of all the claims for the task <a href="/task/view/tid={{task.id}}">{{task.title}}</a><br /> |
0d0ea7b188d5
fixed a bug in templates/task/claim.html which required modification of views/task.py; also changed the no.of char limit on task title .
nishanth
parents:
25
diff
changeset
|
5 |
{% for claim in claims %} |
0d0ea7b188d5
fixed a bug in templates/task/claim.html which required modification of views/task.py; also changed the no.of char limit on task title .
nishanth
parents:
25
diff
changeset
|
6 |
<hr /> |
156 | 7 |
<a href="/user/view/uid={{claim.user.id}}">{{claim.user.username}}</a> |
8 |
on {{claim.creation_datetime|date:"D d M Y"}} at {{claim.creation_datetime|time:"H:i"}} wrote:<br /> |
|
33
0d0ea7b188d5
fixed a bug in templates/task/claim.html which required modification of views/task.py; also changed the no.of char limit on task title .
nishanth
parents:
25
diff
changeset
|
9 |
{{claim.message}}<br /> |
0d0ea7b188d5
fixed a bug in templates/task/claim.html which required modification of views/task.py; also changed the no.of char limit on task title .
nishanth
parents:
25
diff
changeset
|
10 |
{% endfor %} |
0d0ea7b188d5
fixed a bug in templates/task/claim.html which required modification of views/task.py; also changed the no.of char limit on task title .
nishanth
parents:
25
diff
changeset
|
11 |
{% else %} |
156 | 12 |
{% if task_claimable %} |
72 | 13 |
There are no claims for this task yet.<br /> |
156 | 14 |
Be the first to claim the task.<br /> |
72 | 15 |
{% else %} |
159 | 16 |
The task cannot be claimed at this stage.<br /> |
72 | 17 |
{% endif %} |
159 | 18 |
<a href="/task/view/tid={{task.id}}">Click here</a> to view the task.<br /> |
33
0d0ea7b188d5
fixed a bug in templates/task/claim.html which required modification of views/task.py; also changed the no.of char limit on task title .
nishanth
parents:
25
diff
changeset
|
19 |
{% endif %} |
0d0ea7b188d5
fixed a bug in templates/task/claim.html which required modification of views/task.py; also changed the no.of char limit on task title .
nishanth
parents:
25
diff
changeset
|
20 |
{% if task_claimed and is_mentor %} |
72 | 21 |
<a href="/task/assign/tid={{task.id}}">Select a user to assign the work.</a> |
25
c0e4fc8b8b5b
added the functionality to assign a task to one of the claimed users.
nishanth
parents:
diff
changeset
|
22 |
{% endif %} |
c0e4fc8b8b5b
added the functionality to assign a task to one of the claimed users.
nishanth
parents:
diff
changeset
|
23 |
{% if user_can_claim %} |
156 | 24 |
{% if errors %} |
25 |
{% for error in errors %} |
|
26 |
{{error}}<br /> |
|
27 |
{% endfor %} |
|
28 |
{% endif %} |
|
29 |
||
30 |
<hr /> |
|
31 |
Please note that you can claim only once and so write your proposal carefully.<br /> |
|
32 |
Claim proposal:<br /> |
|
33 |
<form action="" method="post"> |
|
34 |
<textarea name="message"></textarea><br /> |
|
35 |
<input type="submit" value="Submit Claim"> |
|
36 |
</form> |
|
25
c0e4fc8b8b5b
added the functionality to assign a task to one of the claimed users.
nishanth
parents:
diff
changeset
|
37 |
{% endif %} |
c0e4fc8b8b5b
added the functionality to assign a task to one of the claimed users.
nishanth
parents:
diff
changeset
|
38 |
{% endblock %} |