2021-05-17 19:34:49 +00:00
|
|
|
{% import 'admin/static.html' as admin_static with context%}
|
|
|
|
{% import 'admin/lib.html' as lib with context %}
|
|
|
|
|
|
|
|
{# store the jinja2 context for form_rules rendering logic #}
|
|
|
|
{% set render_ctx = h.resolve_ctx() %}
|
|
|
|
|
|
|
|
{% block body %}
|
2022-03-02 22:35:20 +00:00
|
|
|
|
2021-05-17 19:34:49 +00:00
|
|
|
<div class="modal-header">
|
2022-03-02 22:35:20 +00:00
|
|
|
{% block header_text %}<h5 class="modal-title">{{ _gettext('Create New Record') }}</h5>{% endblock %}
|
|
|
|
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
|
|
|
<span aria-hidden="true">×</span>
|
|
|
|
</button>
|
2021-05-17 19:34:49 +00:00
|
|
|
</div>
|
2022-03-02 22:35:20 +00:00
|
|
|
{% call lib.form_tag(action=url_for('.create_view', url=return_url)) %}
|
2021-05-17 19:34:49 +00:00
|
|
|
<div class="modal-body">
|
2022-03-02 22:35:20 +00:00
|
|
|
{{ lib.render_form_fields(form, form_opts=form_opts) }}
|
|
|
|
</div>
|
|
|
|
<div class="modal-footer">
|
|
|
|
{{ lib.render_form_buttons(return_url, extra=None, is_modal=True) }}
|
|
|
|
</div>
|
|
|
|
{% endcall %}
|
|
|
|
|
2021-05-17 19:34:49 +00:00
|
|
|
{# "save and add" button is removed from modal (it won't function properly) #}
|
2022-03-02 22:35:20 +00:00
|
|
|
{# % block create_form %}
|
2021-05-17 19:34:49 +00:00
|
|
|
{{ lib.render_form(form, return_url, extra=None, form_opts=form_opts,
|
|
|
|
action=url_for('.create_view', url=return_url),
|
|
|
|
is_modal=True) }}
|
2022-03-02 22:35:20 +00:00
|
|
|
{% endblock % #}
|
|
|
|
|
|
|
|
|
2021-05-17 19:34:49 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block tail %}
|
2022-03-02 22:35:20 +00:00
|
|
|
<script src="{{ admin_static.url(filename='admin/js/bs4_modal.js', v='1.0.0') }}"></script>
|
2021-05-17 19:34:49 +00:00
|
|
|
{% endblock %}
|