neptune/core/templates/modals/drilldown.html

15 lines
472 B
HTML
Raw Normal View History

{% load index %}
{% load static %}
<script src="{% static 'modal.js' %}"></script>
<link rel ="stylesheet" href="{% static 'tabs.css' %}">
<script src="{% static 'tabs.js' %}"></script>
2022-08-11 18:36:34 +00:00
<div id="modal" class="modal is-active is-clipped">
2022-07-21 12:51:12 +00:00
<div class="modal-background"></div>
<div class="modal-content">
<div class="box">
2022-08-28 19:26:15 +00:00
{% include 'panels/drilldown.html' %}
<button class="modal-close is-large" aria-label="close"></button>
2022-07-21 12:51:12 +00:00
</div>
</div>
2022-08-28 19:26:15 +00:00
</div>