{% extends "base.html" %} {% set active_page = "admin_settings" %} {% block title %} Basic Settings - {{ SITE_NAME }} {% endblock %} {% block dashboard_stat %}

Settings Basic

{% endblock %} {% block content %}

Basic Settings

{% for setting in settings %} {% if SETTING.get(setting) in [False] %} {% elif SETTING.get(setting) in [True] %} {% else %} {% endif %} {% endfor %}
Setting Name Current Value Action
{{ setting }}  Off  On
{% endblock %} {% block extrascripts %} {% endblock %}