{% extends 'custom_admin/base.html' %} {% load static %} {% block title %}Logo Upload{% endblock %} {% block page_title %}Logo Management{% endblock %} {% block content %}

Logo Management

Upload and manage your company logo

Upload New Logo

{% csrf_token %}

Important Note

• Only one logo can be active at a time

• Uploading a new logo will automatically deactivate the current active logo

• Recommended size: 200x60 pixels or similar aspect ratio

{% if logos %}

Current Logos

{% for logo in logos %}
{% if logo.image %} {{ logo.name }} {% else %}

No Logo

{% endif %}

{{ logo.name }}

{% if logo.is_active %} Active {% else %} Inactive {% endif %}

Uploaded: {{ logo.created_at|date:"M d, Y" }}

{% csrf_token %}
{% csrf_token %}
{% endfor %}
{% else %}

No logos uploaded

Upload your first logo to get started.

{% endif %}
{% endblock %}