mirror of
https://codeberg.org/Mo8it/AdvLabDB.git
synced 2024-11-08 21:21:06 +00:00
24 lines
984 B
HTML
24 lines
984 B
HTML
{% 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 %}
|
|
<div class="modal-header">
|
|
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
|
{% block header_text %}<h3>{{ _gettext('Create New Record') }}</h3>{% endblock %}
|
|
</div>
|
|
<div class="modal-body">
|
|
{# "save and add" button is removed from modal (it won't function properly) #}
|
|
{% block create_form %}
|
|
{{ lib.render_form(form, return_url, extra=None, form_opts=form_opts,
|
|
action=url_for('.create_view', url=return_url),
|
|
is_modal=True) }}
|
|
{% endblock %}
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block tail %}
|
|
<script src="{{ admin_static.url(filename='admin/js/bs3_modal.js', v='1.0.0') }}"></script>
|
|
{% endblock %}
|