{% extends "base.html" %} {% block content %}

{{ _('Application Settings') }}

{% import "bulma_wtf.html" as wtf %}
{{ form.hidden_tag() }}

{{ form.submit( class="button is-link") }} {% if config['SETTINGS_CHANGED'] %} {{ form.apply_changes(class="button is-warning") }} {% endif %}

{{ wtf.form_input_field(form.ssid) }}

This is the name of the advertised Wi-Fi network. Current SSID: {{ get_setting('ssid') }}

{{ wtf.form_input_field(form.wifi_password) }}

This is the secret key needed to connect to the Wi-Fi network. By default, this is not set and everyone can join. Current password: {{ get_setting('wifi_password') or 'Not set' }}

{{ wtf.form_input_field(form.butterbox_name) }}

This is the name shown in the UI, and used to access the box locally by adding .local or .lan in your browser. Current name: {{ get_setting('butterbox_name') }}, accessed at {{ get_setting('butterbox_name') }}.local.

{{ wtf.form_bool_field(form.enable_access_point) }}

Whether this box will advertise a WiFi network.

{{ wtf.form_bool_field(form.enable_map_viewer) }}

Whether map services are enabled.

{{ wtf.form_bool_field(form.enable_chat) }}

Whether chat services are enabled.

{{ wtf.form_bool_field(form.enable_deltachat) }}

Whether secure messaging using DeltaChat is enabled.

{{ wtf.form_bool_field(form.enable_file_viewer) }}

Whether files services via USB are enabled.

{{ wtf.form_bool_field(form.enable_app_store) }}

Whether app store services are enabled.

{{ wtf.form_input_field(form.admin_password) }}

Password for accessing this interface.

{{ form.butterbox_logo(class='label', style="width: 280px") }}
{% for error in form.butterbox_logo.errors %}

{{ error }}

{% endfor %}

This is the logo shown in the UI. Current logo:

Logout {% endblock %}