{% extends "base.html" %} {% import 'components/macros.html' as ui %} {% block title %}{{ title }} - Gvelo Enterprise Platform{% endblock %} {% block head_extra %} {% endblock %} {% block content %} {{ title }} {{ subtitle }} {% for action in actions or [] %} {% if action.method == "post" %} {{ action.label }} {% else %} {{ action.label }} {% endif %} {% endfor %} {% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %} {{ message }} {% endfor %} {% endif %} {% endwith %} {{ content | safe }} {% endblock %}
{{ subtitle }}