PoraHobe
{% if current_user.is_authenticated %}
Upload
Notes
Activity
{% if current_user.is_admin %}
Admin
{% endif %}
Profile
My Notes
Logout
{% else %}
Login
{% endif %}
{% if current_user.is_authenticated %}
{{ current_user.name }}
{{ current_user.email }}
Upload
Notes
Activity
Profile
My Notes
{% if current_user.is_admin %}
Admin
{% endif %}
Logout
{% endif %}
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %}
{% for category, message in messages %}
{{ message }}
{% endfor %}
{% endif %} {% endwith %} {% block content %}{% endblock %}
{% block scripts %}{% endblock %}