Implement initial drug search

This commit is contained in:
2024-03-26 17:06:44 +00:00
parent b924c0556c
commit 6131c58857
30 changed files with 1639 additions and 123 deletions

View File

@@ -0,0 +1,21 @@
{% 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 %}