mirror of
https://codeberg.org/Mo8it/AdvLabDB.git
synced 2024-11-12 21:40:41 +00:00
26 lines
1 KiB
HTML
26 lines
1 KiB
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('Edit Record') + ' #' + request.args.get('id') }}</h3>
|
|
{% endblock %}
|
|
</div>
|
|
<div class="modal-body">
|
|
{# "save and continue" button is removed from modal (it won't function properly) #}
|
|
{% block edit_form %}
|
|
{{ lib.render_form(form, return_url, extra=None, form_opts=form_opts,
|
|
action=url_for('.edit_view', id=request.args.get('id'), 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 %}
|