{% extends "base.html" %} {% block title %}Einfaches Profil{% endblock %} {% block content %}

Hallo, {{ user.username }}

E-Mail: {{ user.email }}

Mitglied seit: {{ user.created_at.strftime('%d.%m.%Y') }}

Deine Mindmaps

{% if user_mindmaps %}
{% for mindmap in user_mindmaps %}

{{ mindmap.name }}

{{ mindmap.description }}

Erstellt: {{ mindmap.created_at.strftime('%d.%m.%Y') }}
{% endfor %}
{% else %}

Du hast noch keine Mindmaps erstellt

Erste Mindmap erstellen
{% endif %}

Deine Gedanken

{% if thoughts %}
{% for thought in thoughts %}

{{ thought.title }}

{{ thought.abstract[:150] ~ '...' if thought.abstract and thought.abstract|length > 150 else thought.abstract }}

Erstellt: {{ thought.created_at.strftime('%d.%m.%Y') }}
{% endfor %}
{% else %}

Du hast noch keine Gedanken erstellt

{% endif %}
{% endblock %}