{% extends "base.html" %} {% load crispy_forms_tags %} {% block title %}{{ notiz.name }} - Notizen{% endblock %} {% block content %}
{% if notiz.attached_to_object_str %}
Diese Notiz ist angehängt an: {{ notiz.attached_to_model_name }} - {{ notiz.attached_to_object_str }}
{% endif %}
Erstellt von: {{ notiz.erstellt_von.get_full_name|default:notiz.erstellt_von.username }} am {{ notiz.erstellt_am|date:"d.m.Y H:i" }}
Zuletzt geändert: {{ notiz.geaendert_am|date:"d.m.Y H:i" }}
{{ html_content|safe }}
{% endblock %}