{% extends "base.html" %} {% block title %}Settings - DocuElevate{% endblock %} {% block head_extra %} {% endblock %} {% block content %}

Application Settings

This is a convenience feature to view and edit application settings through the web interface.

{% for category, settings_list in settings_data.items() %}

{{ category }}

{% for setting in settings_list %}
{{ setting.source_label }}

{{ setting.metadata.description }}

{% if setting.metadata.type == 'boolean' %}
{% else %}
{% if setting.metadata.sensitive %}
{% else %} {% endif %}
{% endif %}
{% endfor %}
{% endfor %}
{% endblock %}