{% if show_overlay_pagination %}
  • <
  • >
{% endif %}

{{ overlay_title }} {{ overlay_description }}

Exit
{% if overlay_tabs_horizontal %}
    {% for idx in ((overlay_tabs_horizontal | length) | xrange) %} {% set tab = overlay_tabs_horizontal[idx] %} {% set li_class = tab.css_class if tab.css_class else '' %} {% set li_class = li_class ~ ' disabled' if not tab.enabled %} {% set tab_select_action = 'selectOverlayTab(\'overlayTab_\', '~ (overlay_indexes[idx] | string) ~ ')' if tab.enabled else 'return false;' %}
  • {{ tab.name }}
  • {% endfor %}
{% endif %}
{% include overlay_content_template ~ ".html" %}
Please wait until this upload has finished. Interrupting it may cause serious data loss.
{% if overlay_tabs_vertical %}

    {% for idx in ((overlay_tabs_vertical | length) | xrange) %} {% set tab = overlay_tabs_vertical[idx] %} {% set li_class = tab.css_class if tab.css_class else '' %} {% set li_class = li_class ~ ' disabled' if not tab.enabled %} {% set tab_select_action = 'selectOverlayTab(\'overlayTabHorizontal_\', '+ (idx | string) + ')' if tab.enabled else 'return false;' %}
  • {{ tab.name }}
  • {% endfor %}
{% endif %}