{% extends parent %} {% import "bootstrap/wtf.html" as wtf %} {% set sidebar_state = 'disabled' %} {% set btn_back = true %} {% block nav_client %} active{% endblock %} {% block nav_client_details %} active{% endblock %} {% block nav_client_add %}active{% endblock %} {% block content %} {% set ip_list = [form.ip.data] %}

{{_('Client details')}}

{{ form.hidden_tag() }} {{ form.server() }} {{ form.folder_id() }} {% for field in form if field.type != 'CSRFToken' and field.name not in ['submit', 'remote', 'maintenance'] %} {% if not field.flags.hidden %}
{{ field(class="form-control") }}
{% endif %} {% endfor %}
{{ form.submit(class="btn btn-primary") }}
{% if setup|length > 0 %} {% for entry in setup %} {% endfor %}
{{_('Partition')}} {{_('Type')}} {{_('Filesystem')}} {{_('Size')}} (MiB) {{_('Image')}}
{{ entry.partition }} {{ entry.code }} {{ entry.filesystem }} {{ entry.size // 1024}} {{ entry.image }}
{% endif %} {% include 'cache_inspector.html' %} {% endblock %}