2022-11-29 07:20:39 +00:00
|
|
|
{% load static %}
|
|
|
|
|
2023-02-10 20:57:17 +00:00
|
|
|
{% include 'mixins/partials/notify.html' %}
|
2022-11-29 07:20:39 +00:00
|
|
|
{% if cache is not None %}
|
|
|
|
<span class="icon has-tooltip-bottom" data-tooltip="Cached">
|
|
|
|
<i class="fa-solid fa-database"></i>
|
|
|
|
</span>
|
|
|
|
{% endif %}
|
|
|
|
|
2023-02-02 20:41:19 +00:00
|
|
|
fetched {{ table.data|length }}
|
|
|
|
{% if params.rule is None %} hits {% else %} rule hits for {{ params.rule }}{% endif %}
|
|
|
|
in {{ took }}ms
|
2022-11-29 07:20:39 +00:00
|
|
|
|
|
|
|
{% if exemption is not None %}
|
|
|
|
<span class="icon has-tooltip-bottom" data-tooltip="God mode">
|
|
|
|
<i class="fa-solid fa-book-bible"></i>
|
|
|
|
</span>
|
|
|
|
{% else %}
|
|
|
|
{% if redacted is not None %}
|
|
|
|
<span class="icon has-tooltip-bottom" data-tooltip="{{ redacted }} redacted">
|
|
|
|
<i class="fa-solid fa-mask"></i>
|
|
|
|
</span>
|
|
|
|
{% endif %}
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% include 'partials/results_table.html' %}
|
|
|
|
{% include 'partials/sentiment_chart.html' %}
|