2020-10-27 11:29:34 +00:00
|
|
|
{% load i18n %}
|
|
|
|
|
2021-03-17 12:44:47 +00:00
|
|
|
<div class='modal fade modal-image' role='dialog' id='modal-image-dialog'>
|
|
|
|
<span class='modal-close' id='modal-image-close'>×</span>
|
|
|
|
|
|
|
|
<img class='modal-image-content' id='modal-image'>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
2021-10-28 08:10:21 +00:00
|
|
|
<div class='modal fade modal-fixed-footer modal-primary inventree-modal' role='dialog' id='modal-form' tabindex='-1'>
|
2018-04-27 11:35:36 +00:00
|
|
|
<div class='modal-dialog'>
|
|
|
|
<div class='modal-content'>
|
|
|
|
<div class="modal-header">
|
2021-10-28 08:10:21 +00:00
|
|
|
<h4 id='modal-title'><em>Form Title Here</em></h4>
|
|
|
|
<button type='button' class='btn-close' data-bs-dismiss='modal' aria-label='{% trans "Close" %}'></button>
|
2020-10-27 11:29:34 +00:00
|
|
|
</div>
|
2021-02-12 09:13:17 +00:00
|
|
|
<div class='modal-form-content-wrapper'>
|
|
|
|
<div class='alert alert-block alert-danger' id='form-validation-warning' style='display: none;'>
|
|
|
|
{% trans "Form errors exist" %}
|
|
|
|
</div>
|
|
|
|
<div class='modal-form-content'>
|
|
|
|
<!-- Form content will be injected here-->
|
|
|
|
</div>
|
2018-04-27 11:35:36 +00:00
|
|
|
</div>
|
|
|
|
<div class='modal-footer'>
|
2021-05-07 05:18:13 +00:00
|
|
|
<div id='modal-footer-buttons'></div>
|
2021-10-28 08:57:17 +00:00
|
|
|
<button type='button' class='btn btn-outline-secondary' id='modal-form-close' data-bs-dismiss='modal'>{% trans "Close" %}</button>
|
2020-10-27 11:29:34 +00:00
|
|
|
<button type='button' class='btn btn-primary' id='modal-form-submit'>{% trans "Submit" %}</button>
|
2018-04-27 11:35:36 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2021-06-25 03:23:29 +00:00
|
|
|
<div class='modal fade modal-fixed-footer modal-secondary' role='dialog' id='modal-form-secondary'>
|
2019-05-14 12:30:24 +00:00
|
|
|
<div class='modal-dialog'>
|
|
|
|
<div class='modal-content'>
|
|
|
|
<div class="modal-header">
|
2021-10-28 08:41:46 +00:00
|
|
|
<h4 id='modal-title'><em>Form Title Here</em></h4>
|
|
|
|
<button type='button' class='btn-close' data-bs-dismiss='modal' aria-label='{% trans "Close" %}'></button>
|
2020-10-27 11:29:34 +00:00
|
|
|
</div>
|
2021-02-18 03:56:35 +00:00
|
|
|
<div class='modal-form-content-wrapper'>
|
|
|
|
<div class='alert alert-block alert-danger' id='form-validation-warning' style="display: none;">
|
|
|
|
{% trans "Form errors exist" %}
|
|
|
|
</div>
|
|
|
|
<div class='modal-form-content'>
|
|
|
|
</div>
|
2019-05-14 12:30:24 +00:00
|
|
|
</div>
|
|
|
|
<div class='modal-footer'>
|
2021-05-07 05:18:13 +00:00
|
|
|
<div id='modal-footer-buttons'></div>
|
2021-10-28 08:57:17 +00:00
|
|
|
<button type='button' class='btn btn-outline-secondary' id='modal-form-close' data-bs-dismiss='modal'>{% trans "Close" %}</button>
|
2020-10-27 11:29:34 +00:00
|
|
|
<button type='button' class='btn btn-primary' id='modal-form-submit'>{% trans "Submit" %}</button>
|
2019-05-14 12:30:24 +00:00
|
|
|
</div>
|
2018-04-26 14:06:44 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2021-07-12 10:55:28 +00:00
|
|
|
</div>
|