{% extends "bootstrap/base.html" %} {%block styles%} {{super()}} {%endblock%} {%block scripts%} {{super()}} {%endblock%} {% block title %}Larigira{% endblock title %} {% block navbar %} {% block messages %} {% with messages = get_flashed_messages() %} {% if messages %}
{% endif %} {% endwith %} {% endblock messages %} {% endblock %} {% macro dict_table(obj, exclude_list=[]) %} {% for key in obj if key not in exclude_list%} {% endfor %}
Option Value
{{key}} {{obj[key]}}
{% endmacro %} {# vim: set ts=2 sw=2 noet: #}