{% extends "common/base.html" %} {% from "components/header.html" import header %} {% from "settings/tabs/colors.html" import colors_tab %} {% from "settings/tabs/company_info.html" import company_info_tab %} {% from "settings/tabs/security.html" import security_tab %} {% from "settings/tabs/debugging.html" import debugging_tab %} {% from "settings/tabs/events.html" import events_tab %} {% from "settings/tabs/email_templates.html" import email_templates_tab %} {% from "settings/tabs/mails.html" import mails_tab %} {% from "settings/tabs/smtp_settings.html" import smtp_settings_tab %} {% from "settings/tabs/connections.html" import connections_tab %} {% from "settings/components/reset_colors_modal.html" import reset_colors_modal %} {% block title %}Settings - DocuPulse{% endblock %} {% block extra_css %} {% endblock %} {% block content %} {{ header( title="Settings", description="Manage your docupulse settings", button_text="", button_url="", icon="fa-cog" ) }}
{{ colors_tab(primary_color, secondary_color, csrf_token) }}
{% if not is_master %}
{{ company_info_tab(site_settings, form, csrf_token) }}
{{ email_templates_tab(email_templates, csrf_token) }}
{% endif %}
{{ mails_tab(mails, csrf_token, users, total_pages, current_page) }}
{% if not is_master %}
{{ security_tab() }}
{{ events_tab(events, csrf_token, users, total_pages, current_page) }}
{% endif %}
{{ debugging_tab() }}
{{ smtp_settings_tab(smtp_settings, csrf_token) }}
{% if is_master %}
{{ connections_tab(portainer_settings, nginx_settings, site_settings, git_settings) }}
{% endif %}
{{ reset_colors_modal(csrf_token) }} {% endblock %} {% block extra_js %} {% endblock %}