{% extends "base.html" %} {% block title %}Profil{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
Profilbild
{{ stats.thought_count if stats and stats.thought_count else 0 }}
Gedanken
{{ stats.connections_count if stats and stats.connections_count else 0 }}
Verbindungen
{{ stats.followers_count if stats and stats.followers_count else 0 }}
Follower
{{ stats.contributions_count if stats and stats.contributions_count else 0 }}
Beiträge
{{ stats.rating if stats and stats.rating else '0.0' }}
Bewertung
Aktivitäten
Gedanken
Mindmaps
Sammlungen
Verbindungen
Einstellungen
{% if activities %} {% for activity in activities %}
{{ activity.title }}
{{ activity.date }}

{{ activity.content }}

{% endfor %} {% else %}

Noch keine Aktivitäten vorhanden

{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}