{% extends "base.html" %} {% block title %}System Settings - Admin{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

System Settings

Registration Settings

Control user registration availability

Current status: {% if settings.get('registration_enabled') == True or settings.get('registration_enabled') == 'true' %}Enabled{% else %}Disabled{% endif %}
Maintenance Mode

Enable maintenance mode for system updates

Current status: {% if settings.get('maintenance_mode') == True or settings.get('maintenance_mode') == 'true' %}Maintenance{% else %}Active{% endif %}
All System Settings
{% for key, value in settings.items() %} {% endfor %}
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 %}
{% endblock %} {% block extra_js %} {% endblock %}