{% load static %} {% load notizen_tags %} {% if notizen_with_html %}

Notizen ({{ notizen_with_html|length }})

{% for item in notizen_with_html %}
{{ item.notiz.name }}
Von {{ item.notiz.erstellt_von.get_full_name|default:item.notiz.erstellt_von.username }} am {{ item.notiz.erstellt_am|date:"d.m.Y H:i" }} {% if item.notiz.geaendert_am != item.notiz.erstellt_am %} (bearbeitet am {{ item.notiz.geaendert_am|date:"d.m.Y H:i" }}) {% endif %}
{{ item.html_content|safe }}
{% endfor %}
{% endif %}
{% if user.is_authenticated %} Notiz hinzufügen {% endif %}