pytask/templates/task/view.html
changeset 366 4c349f310dfc
parent 365 32457bce3437
child 367 13e171f09941
equal deleted inserted replaced
365:32457bce3437 366:4c349f310dfc
   104     
   104     
   105         <hr />
   105         <hr />
   106     {% if comments %}
   106     {% if comments %}
   107         comments:<br /><br />
   107         comments:<br /><br />
   108         {% for comment in comments %}
   108         {% for comment in comments %}
   109             <a href="/user/view/uid={{comment.commented_by.uniq_key}}">{{ comment.commented_by.username }}</a> 
   109             <a href="/user/view/uid={{comment.commented_by.id}}">{{ comment.commented_by.username }}</a> 
   110             on {{ comment.comment_datetime|date:"D d M Y"}} at {{comment.comment_datetime|time:"H:i"}} wrote:<br />
   110             on {{ comment.comment_datetime|date:"D d M Y"}} at {{comment.comment_datetime|time:"H:i"}} wrote:<br />
   111         {{ comment.data|linebreaksbr }}<br />
   111         {{ comment.data|linebreaksbr }}<br />
   112         {% endfor %}
   112         {% endfor %}
   113     {% endif %}
   113     {% endif %}
   114     <hr />
   114     <hr />