{% extends "base.html" %} {% load static %} {% block title %}System Configuration - {{ block.super }}{% endblock %} {% block content %}

System Configuration

{% if grouped_configurations %} {% for category, configs in grouped_configurations.items %}
{{ category|title }}
{{ configs|length }} item{{ configs|length|pluralize }}
{% for config in configs %}
{{ config.key }}
{{ config.data_type }} {% if config.is_sensitive %} Sensitive {% endif %} {% if config.is_readonly %} Read-only {% endif %} {% if config.is_encrypted %} Encrypted {% endif %}
{% if config.description %}
{{ config.description }}
{% endif %}
{% if config.is_sensitive and not config.is_encrypted %} [Hidden for security] {% elif config.is_encrypted %} [Encrypted value] {% else %} {{ config.value|default:"No value set" }} {% endif %}
{% if config.default_value %}
Default: {{ config.default_value }}
{% endif %}
{% if not config.is_readonly %} {% endif %} {% if config.validation_rules %} {% endif %}
{% if config.tenant %} {{ config.tenant.name }} {% else %} Global {% endif %} {% if config.required_permission %} {{ config.required_permission }} {% endif %} {{ config.updated_at|date:"M d, Y H:i" }}
{% if config.validation_rules %}
Validation Rules
{{ config.validation_rules|pprint }}
{% endif %}
{% endfor %}
{% endfor %} {% else %}
No configurations found

No system configurations are currently available.

{% endif %}
{% endblock %}