{% extends "base.html" %} {% load crispy_forms_tags %} {% block title %}Notizen{% endblock %} {% block content %}

Meine Notizen

{% if notizen %}
{% for notiz in notizen %}
{{ notiz.name }}
{% if notiz.attached_to_object_str %}

Angehängt an: {{ notiz.attached_to_model_name }} - {{ notiz.attached_to_object_str }}

{% endif %}

Zuletzt bearbeitet: {{ notiz.geaendert_am|date:"d.m.Y H:i" }}

{% endfor %}
{% if page_obj.has_other_pages %} {% endif %} {% else %}

Keine Notizen vorhanden

Sie haben noch keine Notizen erstellt.


Erste Notiz erstellen

{% endif %}
{% endblock %}