{% block styles %}{% endblock %} {% block scripts %}{% endblock %}
{% block header %}
{{ title or 'Admin' }}
{% if username %}
Hi, {{ username }}
| {% endif %}
Home
|
Preferences
{% if current_user and current_user.is_admin %} |
Taxonomy
|
Users
{% endif %} {% if session.get('username') %} |
Logout
{% else %} |
Login
{% endif %}
{% with messages = get_flashed_messages() %} {% if messages %}
{% for m in messages %}
{{ m }}
{% endfor %}
{% endif %} {% endwith %}
{% endblock %} {% block content %}{% endblock %} {% block footer_scripts %}{% endblock %}