diff options
author | Madhusudan.C.S | 2011-02-10 13:10:52 +0530 |
---|---|---|
committer | Madhusudan.C.S | 2011-02-10 13:10:52 +0530 |
commit | aef594720ed960e54785faf879e317193cc42f16 (patch) | |
tree | 5626903dedd504731bd2f79410dd0db530eb0aa0 | |
parent | a39c3fc553ffb9d4d043fccacc959d3e5b5d437e (diff) | |
download | pytask-aef594720ed960e54785faf879e317193cc42f16.tar.gz pytask-aef594720ed960e54785faf879e317193cc42f16.tar.bz2 pytask-aef594720ed960e54785faf879e317193cc42f16.zip |
Display the number of Pynts assigned for a task on task view page.
-rw-r--r-- | pytask/templates/task/view.html | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/pytask/templates/task/view.html b/pytask/templates/task/view.html index 9eacf71..66bc72a 100644 --- a/pytask/templates/task/view.html +++ b/pytask/templates/task/view.html @@ -46,15 +46,17 @@ <br /> <hr /> + <strong>Pynts: {{ task.pynts }}</strong><br/> + {% if task.tags.count %} + Tags: {% as_tags task.tags %}<hr /> + {% endif %} + + <hr /> <b>Description:</b><br /> {{ task.desc|linebreaksbr }} <br /><br /><hr /> - {% if task.tags.count %} - Tags: {% as_tags task.tags %}<hr /> - {% endif %} - {% if selected_users %} Users working on this task: |