{% extends "base.html" %} {% block title %}Settings ยท CalMiner{% endblock %} {% block content %}

Currency Management

Manage available currencies, symbols, and default selections from the Currency Management page.

Go to Currency Management

Visual Theme

Adjust CalMiner theme colors and preview changes instantly.

Changes save to the settings table and apply across the UI after submission. Environment overrides (if configured) remain read-only.

Theme Colors

Update global CSS variables to customize CalMiner's appearance.

{% for key, value in css_variables.items() %} {% set env_meta = css_env_override_meta.get(key) %} {% endfor %}
{% from "partials/components.html" import feedback with context %} {{ feedback("theme-settings-feedback") }}

Environment Overrides

The following CSS variables are controlled via environment variables and take precedence over database values.

{% if css_env_override_rows %}
{% for row in css_env_override_rows %} {% endfor %}
CSS Variable Environment Variable Value
{{ row.css_key }} {{ row.env_var }} {{ row.value }}
{% else %}

No environment overrides configured.

{% endif %}
{% endblock %} {% block scripts %} {{ super() }} {% endblock %}