diff --git a/app/modules/project/templates/project/inbox.html b/app/modules/project/templates/project/inbox.html index 130a8fc..1df813a 100644 --- a/app/modules/project/templates/project/inbox.html +++ b/app/modules/project/templates/project/inbox.html @@ -1,7 +1,7 @@ {% extends "erp_base.html" %} {% block head_extra %} - + {% endblock %} @@ -45,5 +45,5 @@ {% endif %} - + {% endblock %} diff --git a/app/modules/project/templates/project/index.html b/app/modules/project/templates/project/index.html index 4712ccc..ee65ef3 100644 --- a/app/modules/project/templates/project/index.html +++ b/app/modules/project/templates/project/index.html @@ -1,7 +1,7 @@ {% extends "erp_base.html" %} {% block head_extra %} - + {% endblock %} @@ -68,7 +68,13 @@ {% for t in p.task_preview %}
  • - {% if t.completed_at %}task_alt{% else %}radio_button_unchecked{% endif %} + + {% if t.comment_count %} + + πŸ’¬{{ t.comment_count }} + + {% endif %} + {{ t.title }} {% if t.stage_name %}{{ t.stage_name }}{% endif %} {% if t.assignee_display %} @@ -82,11 +88,6 @@ {% if t.due_date %} {{ t.due_label }} {% endif %} - {% if t.comment_count %} - - πŸ’¬{{ t.comment_count }} - - {% endif %}
  • {% endfor %} @@ -162,7 +163,13 @@ {% for t in p.tasks %}
  • - {% if t.completed_at %}task_alt{% else %}radio_button_unchecked{% endif %} + + {% if t.comment_count %} + + πŸ’¬{{ t.comment_count }} + + {% endif %} + {{ t.title }} {% if t.start_date or t.due_date %} @@ -173,11 +180,6 @@ {% endif %} - {% if t.comment_count %} - - πŸ’¬{{ t.comment_count }} - - {% endif %}
  • {% endfor %} @@ -307,7 +309,12 @@