{% extends "base.html" %} {% block content %}

Alle Kommentare

{% if total_comments == 0 %}

Es gibt noch keine Kommentare zu Vorgaben.

Zu den Standards

{% else %}

Insgesamt {{ total_comments }} Kommentar{{ total_comments|pluralize:"e" }}

{% for dokument, comments in comments_by_document.items %}

{{ dokument.nummer }} – {{ dokument.name }}

{{ comments|length }} Kommentar{{ comments|length|pluralize:"e" }}

{% for comment in comments %}

{{ comment.vorgabe.Vorgabennummer }} {{ comment.vorgabe.titel }}

Benutzer: {{ comment.user.first_name }} {{ comment.user.last_name }}
Erstellt: {{ comment.created_at|date:"d.m.Y H:i" }} {% if comment.updated_at != comment.created_at %}
Bearbeitet: {{ comment.updated_at|date:"d.m.Y H:i" }} {% endif %}

{% csrf_token %}
{{ comment.text }}
{% endfor %}
{% endfor %} {% endif %}
Zu den Standards
{% endblock %}