{% spaceless %}{{ include("header.html") }}
{{ include("head_menu.html") }} {{ include("main_menu.html") }}
{{ include("settings_menu.html") }}
{% set info = get("info") %} {% set items = get("items") %} {% if items %} {% for item in items %} {% if item.show_section %} {% if item.section_key == info.section_key %} {{ item.section_name }} {% else %} {{ item.section_name }} {% endif %} {% endif %} {% endfor %} {% endif %}

{{ info.section_name }}

{% if info.section_description %}
{{ info.section_description }}
{% endif %}
{{ put_session_key() }} {% if info.params %} {% for param in info.params %} {% if param.showable %}
{% if param.type == "text" %} {% endif %} {% if param.type == "password" %} {% endif %} {% if param.type == "number" %} {% endif %} {% if param.type == "textarea" %} {% endif %} {% if param.type == "editor" %} {% endif %} {% if param.type == "radio" %}
{% if param.choices %} {% for choice in param.choices %} {% endfor %} {% endif %}
{% endif %} {% if param.type == "radio_switch" %}
{% if param.choices %} {% for choice in param.choices %} {% endfor %} {% endif %}
{% endif %} {% if param.type == "radio_modern" %}
{% if param.choices %} {% for choice in param.choices %} {% endfor %} {% endif %}
{% endif %} {% if param.type == "checkbox" %}
{% if param.choices %} {% for choice in param.choices %} {% endfor %} {% endif %}
{% endif %} {% if param.type == "checkbox_switch" %}
{% if param.choices %} {% for choice in param.choices %} {% endfor %} {% endif %}
{% endif %} {% if param.type == "checkbox_modern" %}
{% if param.choices %} {% for choice in param.choices %} {% endfor %} {% endif %}
{% endif %} {% if param.type == "checkbox_modern_advanced" %} {% set cma_key = surfow_encrypt(param.key) %}
{% if param.choices %} {% for choice in param.choices %} {% endfor %} {% endif %}
{% endif %} {% if param.type == "select" %} {% endif %}
{% else %} {% endif %} {% endfor %} {% endif %} {% if info.params %}
{{ l("cancel") }}
{% if s(info.section_key~"/updated_at") %}{{ l("last_update") }} {{ time_ago(s(info.section_key~"/updated_at")) }}{% endif %}
{% endif %}
{{ include("footer_content.html") }}
{{ include("footer.html") }}{% endspaceless %}