diff -r c6038cbf8a39 -r 293692eb8f06 pytask/templates/task/claim.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pytask/templates/task/claim.html Mon Feb 01 15:00:40 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 %}