# HG changeset patch # User Nishanth Amuluru # Date 1294729615 -19800 # Node ID ed2dadfc829aa65ced281fca3de2b20053fdc59f # Parent 8fcde6f8f7505d94e739613543e88cc1054bb860 corrected the user view url diff -r 8fcde6f8f750 -r ed2dadfc829a pytask/templates/task/claim.html --- a/pytask/templates/task/claim.html Tue Jan 11 12:30:10 2011 +0530 +++ b/pytask/templates/task/claim.html Tue Jan 11 12:36:55 2011 +0530 @@ -7,7 +7,7 @@ List of all the claims for the task {{task.title}}
{% for claim in old_claims %}
- {{claim.claimed_by.username}} + {{claim.claimed_by.username}} on {{claim.claim_datetime|date:"D d M Y"}} at {{claim.claim_datetime|time:"H:i"}} wrote:
{{claim.proposal|linebreaksbr}}
{% endfor %} diff -r 8fcde6f8f750 -r ed2dadfc829a pytask/templates/task/view.html --- a/pytask/templates/task/view.html Tue Jan 11 12:30:10 2011 +0530 +++ b/pytask/templates/task/view.html Tue Jan 11 12:36:55 2011 +0530 @@ -23,7 +23,7 @@ {% endif %} --> -
created by {{ task.created_by.username }} +
created by {{ task.created_by.username }} on {{task.creation_datetime|date:"D d M Y"}} at {{task.creation_datetime|time:"H:i"}}
{% if reviewers %} @@ -34,7 +34,7 @@ {% endifequal %} {% for reviewer in reviewers %} - {{reviewer.username}} + {{reviewer.username}} {% endfor %} {% endif %} @@ -64,13 +64,13 @@