templates/task/claim.html
changeset 156 7cad1e92713d
parent 72 9fc60a221016
child 159 a74a32a5a3e1
--- 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 <a href="/task/view/tid={{task.id}}">{{task.title}}</a><br />
         {% for claim in claims %}
             <hr />
-            <a href="/user/view/uid={{claim.user.id}}">{{claim.user.username}}</a> at {{claim.creation_datetime.ctime}} wrote:<br />
+            <a href="/user/view/uid={{claim.user.id}}">{{claim.user.username}}</a>
+            on {{claim.creation_datetime|date:"D d M Y"}} at {{claim.creation_datetime|time:"H:i"}} wrote:<br />
             {{claim.message}}<br />
         {% endfor %}
     {% else %}
-        {% if task_claimable%}
+        {% if task_claimable %}
             There are no claims for this task yet.<br />
+            Be the first to claim the task.<br />
         {% else %}
             This task cannot be claimed right now.
         {% endif %}
-        <a href="/task/view/tid={{task.id}}">Click here</a> to return to the task.
+        <a href="/task/view/tid={{task.id}}">Click here</a> to return to the task.<br />
     {% endif %}
     {% if task_claimed and is_mentor %}
         <a href="/task/assign/tid={{task.id}}">Select a user to assign the work.</a>
     {% endif %}
     {% if user_can_claim %}
-    <hr />
-    {% if errors %}
-        {% for error in errors %}
-            {{error}}<br />
-        {% endfor %}
-    {% endif %}
-    Claim the task:<br />
-        <form action="" method="post">
-        <textarea name="message"></textarea><br />
-        <input type="submit" value="Submit Claim">
-        </form>
+        {% if errors %}
+            {% for error in errors %}
+                {{error}}<br />
+            {% endfor %}
+        {% endif %}
+        
+        <hr />
+        Please note that you can claim only once and so write your proposal carefully.<br />
+        Claim proposal:<br />
+            <form action="" method="post">
+            <textarea name="message"></textarea><br />
+            <input type="submit" value="Submit Claim">
+            </form>
     {% endif %}
 {% endblock %}