diff -r 52958289d81f -r 7cad1e92713d templates/task/claim.html --- a/templates/task/claim.html Mon Mar 01 02:09:00 2010 +0530 +++ b/templates/task/claim.html Mon Mar 01 04:44:49 2010 +0530 @@ -4,31 +4,35 @@ List of all the claims for the task {{task.title}}
{% for claim in claims %}
- {{claim.user.username}} at {{claim.creation_datetime.ctime}} wrote:
+ {{claim.user.username}} + on {{claim.creation_datetime|date:"D d M Y"}} at {{claim.creation_datetime|time:"H:i"}} wrote:
{{claim.message}}
{% endfor %} {% else %} - {% if task_claimable%} + {% if task_claimable %} There are no claims for this task yet.
+ Be the first to claim the task.
{% else %} This task cannot be claimed right now. {% endif %} - Click here to return to the task. + Click here to return to the task.
{% endif %} {% if task_claimed and is_mentor %} Select a user to assign the work. {% endif %} {% if user_can_claim %} -
- {% if errors %} - {% for error in errors %} - {{error}}
- {% endfor %} - {% endif %} - Claim the task:
-
-
- -
+ {% if errors %} + {% for error in errors %} + {{error}}
+ {% endfor %} + {% endif %} + +
+ Please note that you can claim only once and so write your proposal carefully.
+ Claim proposal:
+
+
+ +
{% endif %} {% endblock %}