diff --git a/Core/View/Dashboard.html.twig b/Core/View/Dashboard.html.twig
index c34a47256c..a5f47a489b 100644
--- a/Core/View/Dashboard.html.twig
+++ b/Core/View/Dashboard.html.twig
@@ -44,6 +44,10 @@
+ {# sectionLinks #}
+ {% for includeView in getIncludeViews('Dashboard', 'sectionLinksBefore') %}
+ {% include includeView['path'] %}
+ {% endfor %}
{% block sectionLinks %}
{% endblock %}
+ {% for includeView in getIncludeViews('Dashboard', 'sectionLinksAfter') %}
+ {% include includeView['path'] %}
+ {% endfor %}
+
+ {# backup warning #}
{% if fsc.showBackupWarning() %}
@@ -83,9 +92,22 @@
{{ Utils.registerInstall() }}
{% endif %}
+
+ {# sectionStats #}
+ {% for includeView in getIncludeViews('Dashboard', 'sectionStatsBefore') %}
+ {% include includeView['path'] %}
+ {% endfor %}
{% block sectionStats %}
{{ _self.sectionStats(fsc) }}
{% endblock %}
+ {% for includeView in getIncludeViews('Dashboard', 'sectionStatsAfter') %}
+ {% include includeView['path'] %}
+ {% endfor %}
+
+ {# sections #}
+ {% for includeView in getIncludeViews('Dashboard', 'sectionsBefore') %}
+ {% include includeView['path'] %}
+ {% endfor %}
{% block sections %}
@@ -99,6 +121,10 @@
{{ _self.sectionNews(fsc) }}
{% endblock %}
+ {% for includeView in getIncludeViews('Dashboard', 'sectionsAfter') %}
+ {% include includeView['path'] %}
+ {% endfor %}
+
{% endblock %}