{% block head %}{% endblock %}
NetViz
{% if current_user.is_authenticated %}
Dashboard
{% endif %}
Documentation
About
{% if current_user.is_authenticated %}
{{ current_user.username }}
Logout
{% else %}
Login
Register
{% 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 %}