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

95 lines
2.6 KiB
HTML
Raw Normal View History

2022-07-21 12:45:28 +00:00
{% extends "base.html" %}
{% load static %}
2022-07-21 12:45:28 +00:00
{% block content %}
2022-07-21 12:51:01 +00:00
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
2022-07-21 12:51:12 +00:00
<script>
2022-07-21 12:51:22 +00:00
// tabbed browsing for the modal
2022-07-21 12:51:12 +00:00
function initTabs() {
TABS.forEach((tab) => {
tab.addEventListener('click', (e) => {
let selected = tab.getAttribute('data-tab');
updateActiveTab(tab);
updateActiveContent(selected);
})
})
}
function updateActiveTab(selected) {
TABS.forEach((tab) => {
if (tab && tab.classList.contains(ACTIVE_CLASS)) {
tab.classList.remove(ACTIVE_CLASS);
}
});
selected.classList.add(ACTIVE_CLASS);
}
function updateActiveContent(selected) {
CONTENT.forEach((item) => {
if (item && item.classList.contains(ACTIVE_CLASS)) {
item.classList.remove(ACTIVE_CLASS);
}
let data = item.getAttribute('data-content');
if (data === selected) {
item.classList.add(ACTIVE_CLASS);
}
});
}
</script>
2022-07-21 12:49:22 +00:00
<div class="box">
2022-07-21 12:49:01 +00:00
<form method="POST">
2022-07-21 12:49:11 +00:00
{% csrf_token %}
2022-07-21 12:49:22 +00:00
<div class="field">
<label class="label">Search</label>
2022-07-21 12:49:11 +00:00
<div class="field-body">
<div class="field">
<div class="control is-expanded has-icons-left">
2022-07-21 12:51:12 +00:00
<input name="query" class="input" type="text" placeholder="msg: science AND nick: BillNye AND channel: #science">
2022-07-21 12:49:11 +00:00
<span class="icon is-small is-left">
<i class="fas fa-magnifying-glass"></i>
</span>
</div>
</div>
2022-07-21 12:49:01 +00:00
</div>
2022-07-21 12:49:11 +00:00
</div>
2022-07-21 12:49:22 +00:00
<div class="columns">
<div class="column">
<label class="label">Results</label>
2022-07-21 12:49:11 +00:00
<div class="field">
<div class="control is-expanded has-icons-left">
<div class="select is-fullwidth">
<select name="size">
{% for size in sizes %}
<option value="{{ size }}">{{ size }}</option>
{% endfor %}
2022-07-21 12:49:11 +00:00
</select>
<span class="icon is-small is-left">
<i class="fas fa-magnifying-glass"></i>
</span>
</div>
</div>
</div>
2022-07-21 12:49:01 +00:00
</div>
</div>
2022-07-21 12:49:11 +00:00
2022-07-21 12:49:22 +00:00
<div class="field">
<div class="control">
2022-07-21 12:51:59 +00:00
<button
class="button is-primary is-fullwidth"
hx-post="{% url 'search_drilldown' %}"
hx-trigger="click"
hx-target="#results"
hx-swap="outerHTML">
2022-07-21 12:49:22 +00:00
Search
</button>
2022-07-21 12:45:28 +00:00
</div>
2022-07-21 12:46:05 +00:00
</div>
2022-07-21 12:49:01 +00:00
2022-07-21 12:49:11 +00:00
</form>
2022-07-21 12:46:05 +00:00
</div>
2022-07-21 12:50:51 +00:00
<div id="results">
</div>
2022-07-21 12:49:22 +00:00
2022-07-21 12:45:28 +00:00
{% endblock %}