71 lines
1.4 KiB
HTML
71 lines
1.4 KiB
HTML
{% extends "index.html" %}
|
|
{% block content %}
|
|
{% load static i18n %}
|
|
|
|
{% for path in style_static_paths %}
|
|
<link rel="stylesheet" href="{{path}}"/>
|
|
{% endfor %}
|
|
{% for path in script_static_paths %}
|
|
<script src="{% static path %}"></script>
|
|
{% endfor %}
|
|
|
|
|
|
{% include "generic/components.html" %}
|
|
|
|
<div
|
|
class="oh-checkpoint-badge mb-2"
|
|
id="selectedInstances"
|
|
data-ids="[]"
|
|
data-clicked=""
|
|
style="display: none"
|
|
>
|
|
</div>
|
|
|
|
{% if nav_url %}
|
|
<div
|
|
hx-get="{{nav_url}}?{{request.GET.urlencode}}"
|
|
hx-trigger="load"
|
|
>
|
|
<div
|
|
class="mt-5 oh-wrapper animated-background"
|
|
style="height:80px;"
|
|
>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% if view_url %}
|
|
<div
|
|
class="oh-wrapper"
|
|
id="{{view_container_id}}"
|
|
>
|
|
<div
|
|
class="mt-4 animated-background"
|
|
style="height:600px;"
|
|
>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
|
|
<div
|
|
class="oh-modal"
|
|
id="sendMailModal"
|
|
role="dialog"
|
|
aria-labelledby="sendMailModal"
|
|
aria-hidden="true"
|
|
>
|
|
<div class="oh-modal__dialog">
|
|
<div class="oh-modal__dialog-header">
|
|
<span class="oh-modal__dialog-title" id="sendMailModalLabel"
|
|
><h5>{% trans 'Send Mail' %}</h5></span
|
|
>
|
|
<button class="oh-modal__close" aria-label="Close">
|
|
<ion-icon name="close-outline"></ion-icon>
|
|
</button>
|
|
</div>
|
|
<div class="oh-modal__dialog-body" id="mail-content"></div>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock content %}
|