neptune/core/templates/ui/drilldown/table_results.html

39 lines
1.2 KiB
HTML
Raw Normal View History

2022-08-09 08:04:31 +00:00
{% load static %}
{% load index %}
2022-08-11 06:22:22 +00:00
{% load joinsep %}
2022-08-09 08:04:31 +00:00
{% include 'partials/notify.html' %}
2022-08-09 06:20:30 +00:00
2022-08-09 08:04:31 +00:00
{% if table %}
2022-08-09 06:20:30 +00:00
<script src="{% static 'js/column-shifter.js' %}"></script>
<span class="icon has-tooltip-bottom" data-tooltip="{{ card }} hits total">
<i class="fa-solid fa-chart-mixed"></i>
</span>
2022-08-09 08:04:31 +00:00
{{ table.data|length }} hits in {{ took }}ms
{% 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 != 0 %}
<span class="icon has-tooltip-bottom" data-tooltip="{{ redacted }} redacted">
<i class="fa-solid fa-mask"></i>
2022-08-27 16:31:39 +00:00
</span>
{% endif %}
{% endif %}
{% if delay is not None %}
<span class="icon has-tooltip-bottom" data-tooltip="delayed by {{ delay }} days">
<i class="fa-solid fa-clock"></i>
</span>
{% endif %}
{% if randomised is True %}
<span class="icon has-tooltip-bottom" data-tooltip="integer fields randomised">
<i class="fa-solid fa-shuffle"></i>
</span>
{% endif %}
{% include 'ui/drilldown/table_results_partial.html' %}
{% include 'ui/drilldown/sentiment_partial.html' %}
2022-08-28 12:11:30 +00:00
2022-08-11 06:22:22 +00:00
{% endif %}