{% block extra_css %}{% endblock %}
{{ app_name }}
{% if current_user.is_authenticated %}
Dashboard
My Sets
Add New
Official LEGO Set
MOC (Custom Build)
{{ current_user.username }}
Profile
Logout
{% else %}
Login
Register
{% endif %}
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %}
{% if category == 'success' %}
{% elif category == 'danger' %}
{% elif category == 'warning' %}
{% elif category == 'info' %}
{% endif %} {{ message }}
{% endfor %} {% endif %} {% endwith %}
{% block content %}{% endblock %}
{% block extra_js %}{% endblock %}