MiniFacebook
{% if current_user.is_authenticated %} {% if user.is_admin %}
{{ _('Admin Panel') }}
{{ _('Reset Requests') }}
{% endif %}
{{ _('Feed') }}
{{ _('Users') }}
{{ _('Friends') }}
{{ _('My Posts') }}
0
{{ _('Notifications') }}
{{ _('Profile') }}
{{ _('Logout') }}
{{ _('Support') }}
{% else %}
{{ _('Feed') }}
{{ _('Login') }}
{{ _('Register') }}
{% endif %}
{{ _('Theme') }}
{% if get_locale() == 'de' %}Deutsch{% else %}English{% endif %}
Deutsch
English
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %}
{{ message }}
{% endfor %} {% endif %} {% endwith %}
{% if user.profile_pic and user.profile_pic != 'default.png' %} {% if user.profile_pic.startswith('http') %} {% if SHOPITEM_ID_GOLDRAHMEN in user.shop_items | map(attribute='item_id') | list %}
{% else %}
{% endif %} {% else %} {% if SHOPITEM_ID_GOLDRAHMEN in user.shop_items | map(attribute='item_id') | list %}
{% else %}
{% endif %} {% endif %} {% endif %} {% if user.is_authenticated %}
{{ _('Welcome, %(username)s!', username=user.username) }}
{% endif %}
{% if user.is_admin %}
{{ _('You are logged in as an admin.') }}
{% endif %} {% if SHOPITEM_ID_PREMIUM in user.shop_items | map(attribute='item_id') | list %}
Premium
{% endif %} {% block content %}{% endblock %}