{% extends "base.html" %} {% block title %}System Settings - Admin{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
Control user registration availability
Enable maintenance mode for system updates
| Setting Key | Value | Type | Description | Last Updated | Actions |
|---|---|---|---|---|---|
{{ key }} |
{% if key in ['registration_enabled', 'maintenance_mode'] %} {{ value }} {% else %} {{ value }} {% endif %} | {% if key in ['registration_enabled', 'maintenance_mode'] %}boolean{% else %}string{% endif %} | {% if key == 'registration_enabled' %} Enable or disable user registration {% elif key == 'maintenance_mode' %} Enable maintenance mode for system updates {% elif key == 'app_name' %} Application name displayed in UI {% else %} Custom setting {% endif %} | Recently |
{% if key not in ['registration_enabled', 'maintenance_mode', 'app_name'] %}
{% endif %}
|