Add db migration and DNS dmarc entries

This commit is contained in:
2026-05-20 13:20:58 -03:00
parent 636d3b73cb
commit e57df39562
19 changed files with 850 additions and 12 deletions
+13
View File
@@ -98,6 +98,19 @@
<a class="dw-inline-link" href="/reports/{{ alert.report_db_id }}">Source report</a>
{% endif %}
</div>
{% if alert.published_policy_label or alert.receiver_action_label %}
<div class="mt-stack-sm flex flex-wrap items-center gap-stack-sm">
{% if alert.published_policy_label %}
<span class="status-chip chip-info">published {{ alert.published_policy_label }}</span>
{% endif %}
{% if alert.receiver_action_label %}
<span class="status-chip {{ 'chip-fail' if alert.receiver_action_label == 'receiver reject' else ('chip-warning' if alert.receiver_action_label == 'receiver quarantine' else 'chip-info') }}">{{ alert.receiver_action_label }}</span>
{% endif %}
{% if alert.policy_override_label %}
<span class="status-chip chip-warning">{{ alert.policy_override_label }}</span>
{% endif %}
</div>
{% endif %}
<p class="mt-stack-md text-body-base text-on-surface-variant">{{ alert.llm_summary or alert.summary }}</p>
{% if alert.llm_recommended_action %}
<p class="mt-stack-sm text-body-sm italic text-secondary">{{ alert.llm_recommended_action }}</p>