diff -r fcae44e94845 -r c0e4fc8b8b5b templates/task/claim.html
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/templates/task/claim.html Thu Feb 04 23:15:37 2010 +0530
@@ -0,0 +1,25 @@
+{% extends 'base.html' %}
+{% block content %}
+ List of all the claims for the task {{task.title}}
+ {% for claim in claims %}
+
+ {{claim.user.username}} at {{claim.creation_datetime.ctime}} wrote:
+ {{claim.message}}
+ {% endfor %}
+ {% if task_claimable and is_mentor %}
+ Assign task
+ {% endif %}
+ {% if user_can_claim %}
+
+ {% if errors %}
+ {% for error in errors %}
+ {{error}}
+ {% endfor %}
+ {% endif %}
+ Claim the task:
+
+ {% endif %}
+{% endblock %}