{%- extends "bootstrap/base.html" %} {% import "bootstrap/utils.html" as utils %} {% from "_helpers.html" import nav_li %} {% block head %} {{super()}} {% endblock %} {% block styles %} {{super()}} {% endblock %} {% block title %}Inventory{% endblock %} {% block navbar %} {% endblock %} {% block content %}
{%- with messages = get_flashed_messages(with_categories=True) %} {%- if messages %}
{{utils.flashed_messages(messages)}}
{%- endif %} {%- endwith %} {% block main %}{% endblock %}
{% endblock %} {% block scripts %} {{super()}} {% block inventory_scripts %}{% endblock %} {% endblock %}