{% block css %}
{% endblock %}
{% block navigation %} {%- from "macros.html" import topnav with context -%}
Toggle navigation
FlaskBB
{# active_forum_nav is set in {forum, category, topic}.html and new_{topic, post}.html #} {{ topnav(endpoint='forum.index', name='Forum', icon='glyphicon glyphicon-comment', active=active_forum_nav) }} {{ topnav(endpoint='forum.memberlist', name='Memberlist', icon='glyphicon glyphicon-user') }}
{% if current_user and current_user.is_authenticated() %}
{{ current_user.username }}
Settings
{% if current_user.permissions['admin'] %}
Admin Panel
{% endif %}
Logout
3
Inbox
New Message
test1
-
This is the message title1
{% else %}
Login
Register
Reset Password
{% endif %}
{% endblock %}
{% block messages %} {% include 'flashed_messages.html' %} {% endblock %} {% block content %} {% endblock %}
{% block footer %} {% endblock %} {% block javascript %} {% endblock %}