21 lines
488 B
HTML
21 lines
488 B
HTML
{% extends 'mixins/wm/widget.html' %}
|
|
{% load static %}
|
|
|
|
{% block heading %}
|
|
Results
|
|
{% endblock %}
|
|
|
|
{% block panel_content %}
|
|
{% include 'mixins/partials/notify.html' %}
|
|
{% if cache is not None %}
|
|
<span class="icon has-tooltip-bottom" data-tooltip="Cached">
|
|
<i class="fa-solid fa-database"></i>
|
|
</span>
|
|
{% endif %}
|
|
|
|
fetched {{ table.data|length }} hits
|
|
|
|
|
|
{% include 'partials/results_table.html' %}
|
|
{# include 'partials/sentiment_chart.html' #}
|
|
{% endblock %} |