{% extends 'core/base.html' %} {% load i18n static dashboard rules %} {% block browser_title %}{% blocktrans %}Home{% endblocktrans %}{% endblock %} {% block no_page_title %}{% endblock %} {% block extra_head %} {{ media }} {% endblock %} {% block content %} {% has_perm "core.edit_dashboard_rule" user as can_edit_dashboard %} {% if can_edit_dashboard and show_edit_dashboard_button %}
{% trans "Edit dashboard" %}
{% endif %} {% include "core/partials/announcements.html" with announcements=announcements %}
{% for widget in widgets %}
{% include_widget widget %}
{% endfor %}
{% if default_dashboard and widgets and can_edit_dashboard %}
{% blocktrans %} You didn't customise your dashboard so that you see the system default. Please click on "Edit dashboard" to customise your personal dashboard. {% endblocktrans %}
{% endif %} {% if activities or notifications %}

{% blocktrans %}Last activities{% endblocktrans %}

{% if activities %} {% else %}

{% blocktrans %}No activities available yet.{% endblocktrans %}

{% endif %}

{% blocktrans %}Recent notifications{% endblocktrans %}

{% if notifications %} {% else %}

{% blocktrans %}No notifications available yet.{% endblocktrans %}

{% endif %}
{% endif %} {% if user.person.preferences.general__automatically_update_dashboard and SITE_PREFERENCES.general__automatically_update_dashboard_site %} {% endif %} {% endblock %}