Zion Boggan
repos/CTI Detection Automation/templates/result.html
zionboggan.com ↗
12 lines · html
History for this file →
1
{% extends "base.html" %}
2
{% block heading %}{{ action|capitalize }}{% endblock %}
3
{% block content %}
4
<div class="panel">
5
  <h2>Bundle {{ action }}</h2>
6
  <p>Bundle <span class="mono">{{ result.bundle_id }}</span> was {{ action }}.</p>
7
  {% if action == 'approved' %}
8
  <p class="muted">{{ result.indicators }} indicators promoted to the active set{% if result.deployed %} and written to the Wazuh rules directory{% endif %}.</p>
9
  {% endif %}
10
  <p><a class="row" href="{{ url_for('index') }}">Back to bundles</a></p>
11
</div>
12
{% endblock %}