{% load i18n static %}
{% if title and show_dashboard_title %}

{{ title }}

{% endif %}
{% if layout and layout.rows %} {% for row in layout.rows %}
{% for component_tuple in row.components %} {% with component=component_tuple.0 width=component_tuple.1 %}
{% include component.template_name %}
{% endwith %} {% endfor %}
{% endfor %} {% else %}

{% translate 'No dashboard content configured.' %}

{% endif %}