{% load markdown_extras %}
{{ item.get_kind_display }} {{ item.get_visibility_display }} #{{ item.id }} {% for tag in item.tags.all %}#{{ tag.name }}{% endfor %}
{{ item.content|markdown }}
{% if item.comment %}
{{ item.comment|markdown }}
{% endif %} {% if item.due_at %}
Fällig: {{ item.due_at|date:'d.m.Y H:i' }}
{% endif %} {% if item.url %}{{ item.url }}{% endif %} {% if item.linked_items.all %}
Links: {% for linked in item.linked_items.all %}#{{ linked.id }} {% endfor %}
{% endif %} {% if item.attachments.all %}
Anhänge: {% for a in item.attachments.all %}{{ a.file.name }} {% endfor %}
{% for a in item.attachments.all %}{% if a.file.name|is_image %}{{ a.file.name }}{% endif %}{% endfor %}
{% endif %}
{% if item.kind == 'todo' %}{% endif %}