{% extends "django_prometric/components/card.html" %} {% load i18n %} {% block body %} {% if insights %}
{% for insight in insights %}
{{ insight.title }} {{ insight.source }}
{% if insight.detail %}

{{ insight.detail }}

{% endif %} {% if insight.action %}

{{ insight.action }}

{% endif %}
{% endfor %}
{% else %}

{% translate "Nothing stands out in this period." %}

{% endif %} {% endblock %}