diff -r e338eaeccad7 -r 39f83b4cf557 templates/task/claim.html --- a/templates/task/claim.html Fri Jan 14 00:57:39 2011 +0530 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,52 +0,0 @@ -{% extends 'base.html' %} -{% block content %} - {% if user_can_claim %} - Propose a claim to work on this task.learn more

- {% endif %} - {% if claims %} - List of all the claims for the task {{task.title}}
- {% for claim in claims %} -
- {{claim.sent_from.username}} - on {{claim.sent_date|date:"D d M Y"}} at {{claim.sent_date|time:"H:i"}} wrote:
- {{claim.remarks}}
- {% endfor %} - {% else %} - {% if task_claimable %} - There are no claims for this task yet.
- {% if user_can_claim %} - Be the first to claim the task.
- {% endif %} - {% else %} - The task cannot be claimed at this stage.
- {% endif %} - Click here to view the task.
- {% endif %} - {% if task_claimed and is_reviewer %} - Select a user to assign the work.learn more - {% endif %} - {% if user_can_claim %} - -
-
- {{form.as_p}} -
- Please note that you can claim only once and so write your proposal carefully.
-
- {% endif %} - -{% endblock %}