{% extends "base.html" %} {% load i18n %} {% block title %}{% trans "Dashboard" %}{% endblock %} {% block extrahead %} {% endblock %} {% block content %}
{% include "core/sales_widget.html" %}
{% include "core/taxes_widget.html" %}
{% include "core/invoices_widget.html" %}
{% include "core/prospects_widget.html" %}
{% if announcements %}

{% trans "Info" %}

{% for announcement in announcements %}
{% autoescape off %}{{ announcement.content|linebreaksbr }}{% endautoescape %}
{% endfor %}
{% endif %}
{% include "core/charts_widget.html" %}
{% endblock %}