diff -r 679c7e237052 -r 3c8f3b0e5b00 templates/task/claim.html --- a/templates/task/claim.html Tue Mar 09 11:39:34 2010 +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_mentor %} - 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 %}