{% extends "admin_base.html" %} {% block title %}Settings | Nexora Admin{% endblock %} {% block content %}

Configuration

Website Settings

Control branding, navigation theme, event details, payment, about text, contact information and email notifications from one place.

Website Branding

Logo shown in the navigation & sidebar, background used on the homepage hero.

{% set logo_img = img(settings.site_logo) if settings.site_logo else '' %} {% if logo_img %}
Current website logo
Current Logo
{% endif %} {% set bg_img = img(settings.home_background) if settings.home_background else '' %} {% if bg_img %}
Current homepage background
Current Homepage Background
{% endif %}

Navigation Theme

Controls the real public website top bar, menu text colour and the active-menu accent. Saved values persist across restarts.

Top Bar Color{{ (settings.nav_bg_color or '#d4a017')|upper }}
Navigation Text Color{{ (settings.nav_text_color or '#111827')|upper }}
Active Menu Accent{{ (settings.nav_accent_color or '#e8384f')|upper }}
Preview updates instantly — the public site updates when you save.

Event Details

Title, hero copy, countdown target and venue information.

Payment

Bank details, QR code and registration availability.

{% set qr_img = img(settings.payment_qr_image) if settings.payment_qr_image else '' %} {% if qr_img %}
Current payment QR code
Current Payment QR — upload a new image to replace it
{% endif %}

About Page Text

Intro and story paragraphs shown on the public About Us page.

Contact & Social

Contact channels and social links displayed across the site.

Email Notifications

Registration confirmations, approval emails, PDF tickets and contact alerts are sent through this account.

Change Password

Update your own admin login password (minimum 8 characters).

{% endblock %} {% block scripts %} {% endblock %}