{% extends "layout.html" %} {% block content_header %} {{ build_breadcrumb(_('IAX General Settings'), '', 'asterisk', [_('Edit')]) }} {% endblock %} {% block content %} {% call build_section_row() %} {% call build_form_tabs_box() %} {% call build_tabs_navigation() %} {{ add_tab_navigation_item('general', _('General'), active=True) }} {{ add_tab_navigation_item('callnumberlimits', _('Call Number Limits')) }} {% endcall %} {% call build_form(action=url_for('.IaxGeneralSettingsView:put')) %} {% call build_tabs_content() %} {% call build_tab_content_item('general', active=True) %} {% call add_default_fields(form=form, submit_value=_('Update')) %} {{ build_add_row_entry_header() }} {% call build_table() %} {% call build_table_headers() %} {{ _('Option Key') }} {{ _('Option Value') }} {% endcall %} {% call build_table_body(class_='dynamic-table') %} {% do form.general.options.append_entry() %} {{ _build_option_entry(form.general.options.pop_entry(), template=True) }} {% for option in form.general.options %} {{ _build_option_entry(option) }} {% endfor %} {% endcall %} {% endcall %} {% endcall %} {% endcall %} {% call build_tab_content_item('callnumberlimits') %} {% call add_default_fields(form=form, submit_value=_('Update')) %} {{ build_add_row_entry_header() }} {% call build_table() %} {% call build_table_headers() %} {{ _('Ip Address') }} {{ _('Netmask') }} {{ _('Limit') }} {% endcall %} {% call build_table_body(class_='dynamic-table') %} {% do form.callnumberlimits.append_entry() %} {{ _build_callnumberlimits_entry(form.callnumberlimits.pop_entry(), template=True) }} {% for callnumberlimit in form.callnumberlimits %} {{ _build_callnumberlimits_entry(callnumberlimit) }} {% endfor %} {% endcall %} {% endcall %} {% endcall %} {% endcall %} {% endcall %} {% endcall %} {% endcall %} {% endcall %} {% endblock %} {% macro _build_option_entry(option, template=False) %} {% if template %} {% set tr_class = "row-template hidden" %} {% else %} {% set tr_class = "row-line" %} {% endif %} {{ render_field(option.option_key, with_label=False) }} {{ render_field(option.option_value, with_label=False) }} {{ add_delete_entry_button() }} {% endmacro %} {% macro _build_callnumberlimits_entry(callnumberlimit, template=False) %} {% if template %} {% set tr_class = "row-template hidden" %} {% else %} {% set tr_class = "row-line" %} {% endif %} {{ render_field(callnumberlimit.ip_address, with_label=False) }} {{ render_field(callnumberlimit.netmask, with_label=False) }} {{ render_field(callnumberlimit.limit, with_label=False) }} {{ add_delete_entry_button() }} {% endmacro %}