{% extends "exams/base.html" %} {% load static %} {% block content %}

Site Settings Management

Manage all site settings, gallery, and news in one place

Preview Site Back to Dashboard
{% if messages %} {% for message in messages %}
{{ message }}
{% endfor %} {% endif %}
{% csrf_token %}
Basic Information
Contact Information
Social Media Links
Logo
{% if setting.logo %} Logo
{% else %}
No logo uploaded
{% endif %} Recommended size: 200x60px
Favicon
{% if setting.favicon %} Favicon
{% else %}
No favicon uploaded
{% endif %} Recommended size: 32x32px
Header Image
{% if setting.header_image %} Header Image
{% else %}
No header image uploaded
{% endif %}
Footer Links
Custom CSS
Custom JavaScript
Status
When inactive, visitors will see a maintenance page
Add New News
{% csrf_token %}
News List ({{ news_count }})
{% for news in news_page_obj %} {% empty %} {% endfor %}
# Title Summary Featured Status Created Actions
{{ forloop.counter0|add:news_page_obj.start_index }} {{ news.title|truncatechars:50 }} {{ news.summary|truncatechars:80|default:"-" }} {% if news.is_featured %} ⭐ Featured {% else %} No {% endif %} {% if news.is_active %} Active {% else %} Inactive {% endif %} {{ news.created_at|date:"Y-m-d" }}
{% csrf_token %}
{% csrf_token %}
No news found. Create your first news above.
{% if news_page_obj.has_other_pages %} {% endif %}
{% csrf_token %}
Color Scheme
Live Preview
Primary Color Preview
Secondary Color Preview
Header Background Preview
Footer Background Preview
{% if edit_gallery %} {% endif %} {% if edit_news %} {% endif %} {% endblock %}