{% extends "_layouts/cp" %} {% set title = "Dashboard"|t('app') %} {% block actionButton %}
{% endblock %} {% block main %}
{% for widget in widgets %}
{% if widget.title or widget.subtitle %}
{% if widget.title %}

{{ widget.title }}

{% endif %} {% if widget.subtitle %}
{{ widget.subtitle }}
{% endif %}
{% endif %}
{{ widget.bodyHtml|raw }}
{{ hiddenInput('widgetId', widget.id) }}

{{ "{type} Settings"|t('app', { type: widget.name }) }}


{{ 'Cancel'|t('app') }}
{% endfor %}
{% endblock %}