equal
deleted
inserted
replaced
104 |
104 |
105 {% if is_selected %} |
105 {% if is_selected %} |
106 <a href="/task/report/tid={{task.uniq_key}}">Submit Work</a> |
106 <a href="/task/report/tid={{task.uniq_key}}">Submit Work</a> |
107 {% endif %} |
107 {% endif %} |
108 |
108 |
|
109 <hr /> |
109 {% if comments %} |
110 {% if comments %} |
110 <hr /> |
|
111 comments:<br /><br /> |
111 comments:<br /><br /> |
112 {% for comment in comments %} |
112 {% for comment in comments %} |
113 <a href="/user/view/uid={{comment.commented_by.uniq_key}}">{{ comment.commented_by.username }}</a> |
113 <a href="/user/view/uid={{comment.commented_by.uniq_key}}">{{ comment.commented_by.username }}</a> |
114 on {{ comment.comment_datetime|date:"D d M Y"}} at {{comment.comment_datetime|time:"H:i"}} wrote:<br /> |
114 on {{ comment.comment_datetime|date:"D d M Y"}} at {{comment.comment_datetime|time:"H:i"}} wrote:<br /> |
115 {{ comment.data|linebreaksbr }}<br /><br /> |
115 {{ comment.data|linebreaksbr }}<br /><br /> |