Menu
Neko upload
{% if not session.userid %}
log in
{% else %} {% if not session['avatar'] %}
{% elif session['avatar'].startswith('a_') %}
{% else %}
{% endif %}
Welcome,
{{ session['username'] }}
{% endif %}
Menu
Close Menu
Home
upload
Files
{% with errors = get_flashed_messages(category_filter=["error"]) %} {% if errors %}
×
{%- for msg in errors %}
Error
{{ msg }}
{% endfor -%}
{% endif %} {% endwith %} {% with errors = get_flashed_messages(category_filter=["success"]) %} {% if errors %}
×
{%- for msg in errors %}
Success
{{ msg }}
{% endfor -%}
{% endif %} {% endwith %} {% with errors = get_flashed_messages(category_filter=["warning"]) %} {% if errors %}
×
{%- for msg in errors %}
Warning
{{ msg }}
{% endfor -%}
{% endif %} {% endwith %} {% with errors = get_flashed_messages(category_filter=["info"]) %} {% if errors %}
×
{%- for msg in errors %}
Info
{{ msg }}
{% endfor -%}
{% endif %} {% endwith %} {% block content %}{% endblock %}