{% extends "base.html" %} {% import "bootstrap/wtf.html" as wtf %} {% import "bootstrap/fixes.html" as fixes %} {% import "bootstrap/utils.html" as util %} {% block title %}Configuration{% endblock %} {% block content %}
{{ util.flashed_messages(dismissible=True, container=False) }}

Deployment Configuration

{% for key, value in config.items() %} {% endfor %}
Key Value
{{ key }} {{ value }}
{% include "meta/footer.html" %} {% endblock %}