1
0
mirror of https://gitlab.com/animath/si/plateforme-corres2math.git synced 2025-02-06 17:33:00 +00:00

24 lines
1.2 KiB
HTML
Raw Normal View History

2020-09-24 11:15:54 +02:00
{% load i18n %}
2020-09-22 20:41:42 +02:00
2020-09-24 21:43:45 +02:00
<div id="{{ modal_id }}Modal" class="modal fade" tabindex="-1" role="dialog">
2020-10-15 16:03:08 +02:00
<div class="modal-dialog {{ modal_additional_class }}" role="document">
2020-10-20 14:21:16 +02:00
<form id="{{ modal_id }}-form" method="{{ modal_form_method|default:"post" }}" action="{{ modal_action }}" enctype="{{ modal_enctype|default:"application/x-www-form-urlencoded" }}">
2020-09-22 20:41:42 +02:00
<div class="modal-content">
<div class="modal-header">
2020-09-24 21:43:45 +02:00
<h5 class="modal-title">{{ modal_title }}</h5>
2020-09-22 20:41:42 +02:00
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
</div>
2020-09-27 14:32:05 +02:00
<div class="modal-body">{{ modal_content }}</div>
2020-09-22 20:41:42 +02:00
<div class="modal-footer">
2020-10-31 22:18:04 +01:00
{{ extra_modal_button }}
2020-10-15 16:03:08 +02:00
{% if modal_button %}
<button type="submit" class="btn btn-{{ modal_button_type|default:"primary" }}">{{ modal_button }}</button>
{% endif %}
2020-09-22 20:41:42 +02:00
<button type="button" class="btn btn-secondary" data-dismiss="modal">{% trans "Close" %}</button>
</div>
</div>
</form>
</div>
</div>