{% set navigation = [ {'caption':'Stores List', 'href':url_for('stores.index')}, {'caption':'Install store', 'href':url_for('install_store.index')}, {'caption':'Distributives', 'href':url_for('dists.index')}, {'caption':'Documentation', 'href':url_for('docs.index')} ] %}
mg alpha
{# Main navigation #}
{% for item in navigation %}
{{ item.caption }}
{% endfor %}
{% if global_stores %}
Quick nav
{% for store in global_stores | sort %}
{{ store }}
{% endfor %}
{% endif %}
{# Alerts and messages area #} {% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %}
{{ message }}
{% endfor %} {% endif %} {% endwith %}
{% block content %}{% endblock %}
{% include "queue.html" %}