{% extends "admin/base_site.html" %} {% load i18n admin_theme %} {% block coltype %}colMS{% endblock %} {% block bodyclass %}{{ block.super }} dashboard{% endblock %} {% block nav-breadcrumbs %}{% endblock %} {% block content_title %}{% endblock %} {% block content %} {% admin_display_name user as display_name %} {% get_vanta_recent_activity as recent_activity %} {% get_vanta_system_rows as system_rows %} {% get_vanta_environment_rows as environment_rows %}

{% blocktranslate with username=display_name %}Welcome back {{ username }}{% endblocktranslate %}

{% translate "Here's what's happening today" %}

{% translate "My recent activity" %}

{% if recent_activity.history_url %} {% translate "View all" %} {% endif %}
{% if recent_activity.has_activity %}
{% for group in recent_activity.groups %} {% if group.items %}

{{ group.label }}

    {% for item in group.items %}
  1. {% if item.url %} {{ item.label }} {% else %} {{ item.label }} {% endif %}
  2. {% endfor %}
{% endif %} {% endfor %}
{% else %}

{% translate "You have no recent admin activity today or yesterday." %}

{% endif %}

{% translate "Quick actions" %}

{% translate "Configure these in your project's admin site settings or template context." %}

{% translate "Configure project shortcuts for this dashboard." %}

{% translate "Attention required" %}

{% translate "Items shown here are supplied by your Django project, so each admin can surface the checks that matter to its workflow." %}

{% translate "Configure project-specific checks to show items that need attention." %}

{% translate "System" %}

{% for row in system_rows %}
{{ row.label }}
{{ row.value }}
{% endfor %}

{% translate "Environment" %}

{% for row in environment_rows %}
{{ row.label }}
{{ row.value }}
{% endfor %}
{% endblock %} {% block sidebar %}{% endblock %}