diff options
Diffstat (limited to 'templates/task/claim.html')
-rw-r--r-- | templates/task/claim.html | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/templates/task/claim.html b/templates/task/claim.html index c656146..47e24b7 100644 --- a/templates/task/claim.html +++ b/templates/task/claim.html @@ -8,11 +8,15 @@ {{claim.message}}<br /> {% endfor %} {% else %} - There are no claims for this task yet.<br /> + {% if task_claimable%} + There are no claims for this task yet.<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. {% endif %} {% if task_claimed and is_mentor %} - <a href="/task/assign/tid={{task.id}}">Assign task</a> + <a href="/task/assign/tid={{task.id}}">Select a user to assign the work.</a> {% endif %} {% if user_can_claim %} <hr /> |