{% extends "admin/base_site.html" %} {% load static %} {% load i18n %} {% block content %}

{{ title|default:"Dashboard" }}

{% trans "Welcome back" %}, {{ user.get_full_name|default:user.username }}. {% trans "Here's what's happening today." %}

{% if config.show_add_button %} {% trans "Add New" %} {% endif %}
{% for widget in widgets %}
{{ widget.html|safe }}
{% empty %}

{% trans "No widgets configured" %}

{% trans "Add widgets to your SPECTRA_CONFIG in settings.py to see them here." %}

{% trans "Learn More" %}
{% endfor %}
{% if config.show_app_list %}

{% trans "Applications" %}

{% include "admin/app_list.html" %}
{% endif %}
{% endblock %}