{% extends "base.html" %} {% from "_helpers.html" import is_active, flashed_messages %} {# overwrite the base content block to use container-fluid instead of container #} {% block content %}
{% set path = request.path %}
{% if path.startswith("/inventory") %} Items Attributes Scanner setup {% elif path.startswith("/network") %} Hosts Networks Network Scopes Domains Ansible groups {% elif path.startswith("/task") %} Tasks {% endif %}
{{flashed_messages(messages, container=False, dismissible=True)}} {% block main %}{% endblock %}
{% endblock %}