{% extends "base.html" %} {% block navbar_logout %} {% endblock %} {% 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_bool_field(form.enable_map_viewer) }}

Whether map services are enabled.

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

Whether Matrix chat services are enabled.

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

Whether 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.butterbox_name, form.butterbox_name.errors) }}

This is the name shown in the UI. Current name: {{ get_setting('butterbox_name') }}, accessed at {{ get_setting('butterbox_name') }}.local.

{{ wtf.form_input_field(form.butterbox_hostname, form.butterbox_hostname.errors) }}

This is the URL used to access the box by adding .local in your browser. Current hostname: {{ get_setting('butterbox_hostname') }}.local.

{{ form.butterbox_logo(class='label', style="width: 280px") }}
{{ wtf.field_errors(form.butterbox_logo.errors) }}

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


{% if raspap_installed %}
{{ wtf.form_input_field(form.ssid, form.ssid.errors) }}

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

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

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_bool_field(form.enable_access_point) }}

Whether this box will advertise a Wi-Fi network.

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

Whether a share button for the Wi-Fi network is available.

{% else %}

Access point is only enabled when using a Raspberry Pi.

{% endif %}
{{ wtf.form_password_field(form.admin_password, form.admin_password.errors) }}

Password for accessing this browser interface.

{% for subfield in form.root_account_settings %} {% endfor %} {{ wtf.field_errors(form.root_account_settings.errors)}}
{% for subfield in form.ssh_access_settings %} {% endfor %} {{ wtf.field_errors(form.ssh_access_settings.errors) }}
{% endblock %}