{% for j,v in i.items %}
{% if j != "id" and j != "collection" and j != "owner" %}
{% if j == "Status" %}
{% if i.collection %}
{{v|default_if_none:" -- "}} (Group Task) |
{% else %}
{{v|default_if_none:" -- "}} |
{% endif %}
{% elif j == "start_time" or j = "end_time" %}
{{v|default_if_none:""|date:"d/m/Y"}} |
{% elif j == "Assignee" %}
{% if v %}
{{v|join:", "}}
{% else %}
{{v|default_if_none:" -- "}}
{% endif %}
|
{% else %}
{{v|default_if_none:" -- "}} |
{% endif %}
{% endif %}
{% endfor %}
{% if i.collection %}
|
|
{% else %}
Update |
{% if i.owner == "owner" %}
Delete |
{% else %}
|
{% endif %}
{% endif %}
{% endfor %}