{% macro tooltip(text, placement = null, cc = null) %} data-bs-toggle="tooltip" data-bs-title="{{ text }}" {{ placement ? 'data-bs-placement=' ~ placement ~ '' : '' }} {{ cc ? 'data-bs-container="' ~ cc ~ '"' : '' }} {% endmacro %} {% macro keystroke(keys) %} {% set amount = keys|length %} {% for key in keys %} {{ key }} {% endfor %} {% endmacro %} {% macro badge(text, type) %} {{ text }} {% endmacro %} {% macro alert(message, type) %} {% endmacro %} {% macro form_row(form_row, label_class, widget_class) %}
{{ form_label(form_row, null, {'label_attr': {'class': label_class|default('form-label')}}) }} {{ form_widget(form_row, {'attr': {'class': widget_class|default('form-control')}}) }} {{ form_errors(form_row) }}
{% endmacro %}