54 lines
2.2 KiB
Plaintext
Raw Normal View History

2025-01-17 01:13:39 +01:00
{% macro alert_box(id, alert_class, icon_class, title, text_id) %}
<div id="{{ id }}" class="alert {{ alert_class }} d-none" role="alert">
<h5><i class="{{ icon_class }}"></i> {{ title }} </h5><span id="{{ text_id }}"></span>
</div>
{% endmacro %}
{% macro list_section(id, title, list_id) %}
<div id="{{ id }}" class="mt-4 d-none">
<h6>{{ title }}:</h6>
<ul class="list-group" id="{{ list_id }}"></ul>
</div>
{% endmacro %}
2025-01-08 18:06:08 +01:00
<div class="modal fade" id="dynamicModal" tabindex="-1" aria-labelledby="dynamicModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="dynamicModalLabel"></h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
2025-01-17 01:13:39 +01:00
<!-- Warning box with Markdown -->
{{ alert_box('dynamicModalWarning', 'alert-warning', 'fa-solid fa-triangle-exclamation', 'Warning', 'dynamicModalWarningText') }}
<!-- Info box with Markdown -->
{{ alert_box('dynamicModalInfo', 'alert-info', 'fa-solid fa-circle-info', 'Information', 'dynamicModalInfoText') }}
2025-01-09 16:30:38 +01:00
<!-- Description text -->
2025-01-09 15:57:39 +01:00
<div id="dynamicDescriptionText" class="mt-2 d-none"></div>
2025-01-17 01:13:39 +01:00
<!-- Input box for Identifier -->
2025-01-09 15:34:32 +01:00
<div id="dynamicIdentifierBox" class="input-group mt-2 d-none">
2025-01-08 18:06:08 +01:00
<input type="text" id="dynamicModalContent" class="form-control" readonly>
<button class="btn btn-outline-secondary" type="button" id="dynamicCopyButton">Copy</button>
</div>
2025-01-17 01:13:39 +01:00
2025-01-09 16:30:38 +01:00
<!-- Link -->
2025-01-09 15:17:34 +01:00
<div id="dynamicModalLink" class="mt-3 d-none">
2025-01-09 15:46:45 +01:00
<a href="#" target="_blank" class="btn btn-primary w-100" id="dynamicModalLinkHref"></a>
2025-01-09 15:17:34 +01:00
</div>
2025-01-17 01:13:39 +01:00
2025-01-17 00:59:26 +01:00
<!-- Options -->
2025-01-17 01:13:39 +01:00
{{ list_section('dynamicChildrenSection', 'Options', 'dynamicChildrenList') }}
<!-- Alternatives -->
{{ list_section('dynamicAlternativesSection', 'Alternatives', 'dynamicAlternativesList') }}
2025-01-08 18:06:08 +01:00
</div>
<div class="modal-footer">
2025-01-09 15:38:48 +01:00
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal" onclick="closeAllModals()">Close</button>
2025-01-08 18:06:08 +01:00
</div>
</div>
</div>
2025-01-09 15:17:34 +01:00
</div>