{% extends "base.html" %} {% block title %}{{ user.display_name or user.username }} - SysTades{% endblock %} {% block additional_css %} {% endblock %} {% block content %}
{{ user.username[0].upper() }}

{{ user.display_name or user.username }}

@{{ user.username }}

{% if user.bio %}

{{ user.bio }}

{% endif %}
{{ user.post_count }}
Posts
{{ user.follower_count }}
Follower
{{ user.following_count }}
Folgt
{{ user.mindmaps|length if user.mindmaps else 0 }}
Mindmaps
{% if user != current_user %}
{% else %} {% endif %}
{% if posts %} {% for post in posts %}
{{ post.content[:300] }}{% if post.content|length > 300 %}...{% endif %}
{{ post.like_count }}
{{ post.comment_count }}
{{ post.share_count or 0 }}
{% endfor %} {% else %}

Noch keine Posts

{% if user == current_user %}Du hast noch keine Posts erstellt.{% else %}{{ user.username }} hat noch keine Posts veröffentlicht.{% endif %}

{% if user == current_user %} Ersten Post erstellen {% endif %}
{% endif %}
{% endblock %} {% block additional_js %} {% endblock %}