{% extends "base.html" %} {% block title %}Admin-Bereich{% endblock %} {% block content %}
| ID | Benutzername | Admin | Gedanken | Aktionen | |
|---|---|---|---|---|---|
| {{ user.id }} | {{ user.username }} | {{ user.email }} | {% if user.is_admin %} Admin {% else %} User {% endif %} | {{ user.thoughts|length }} |
| ID | Name | Elternknoten | Gedanken | Aktionen |
|---|---|---|---|---|
| {{ node.id }} | {{ node.name }} | {% if node.parent %} {{ node.parent.name }} {% else %} Wurzelknoten {% endif %} | {{ node.thoughts|length }} |
| ID | Titel | Autor | Datum | Bewertung | Aktionen |
|---|---|---|---|---|---|
| {{ thought.id }} | {{ thought.title }} | {{ thought.author.username }} | {{ thought.timestamp.strftime('%d.%m.%Y') }} |
{{ "%.1f"|format(thought.average_rating) }}
{% for i in range(5) %}
{% if i < thought.average_rating|int %}
{% elif i < (thought.average_rating|int + 0.5) %}
{% else %}
{% endif %}
{% endfor %}
|
{{ users|length }}
{{ nodes|length }}
{{ thoughts|length }}
{% set comment_count = 0 %} {% for thought in thoughts %} {% set comment_count = comment_count + thought.comments|length %} {% endfor %} {{ comment_count }}
Hier würde ein Aktivitätsdiagramm angezeigt werden
Hier würde eine Verteilungsstatistik angezeigt werden