{% extends "base.html" %} {% block title %}Admin Banners{% endblock %} {% block page_id %}banners{% endblock %} {% block page_title %}Banners & Watermark{% endblock %} {% block eyebrow %}Branding{% endblock %} {% block head %} {% endblock %} {% block content %}
{% for asset_type, config in asset_rules.items() %} {% if asset_type != 'watermark' %} {% set current_url = assets.get(asset_type) %}

{{ config.label }}

{{ config.label }}

{{ config.width }} x {{ config.height }} px
{% if current_url %} {{ config.label }} {% else %}
No {{ config.label|lower }} uploaded yet
{% endif %}

Enter a direct URL to an image (JPG, PNG). Recommended size: {{ config.width }} x {{ config.height }} px.

OR

Upload from computer (JPG, PNG, max 5MB). File upload takes priority if both provided.

{% endif %} {% endfor %} {% set watermark_config = asset_rules.get('watermark') %} {% set watermark_url = assets.get('watermark') %}

{{ watermark_config.label }}

{{ watermark_config.label }} ✨ NEW

{{ watermark_config.width }} x {{ watermark_config.height }} px

💡 Watermark images are used to protect your photos and add branding. Upload a transparent PNG or JPG (Recommended: 400 × 150 px)

{% if watermark_url %} Watermark Image {% else %}
📸 No watermark uploaded yet
Upload to add watermark protection
{% endif %}

Enter a direct URL to a watermark image (JPG, PNG, transparent PNG recommended). Size: {{ watermark_config.width }} x {{ watermark_config.height }} px.

OR

Upload from computer (JPG, PNG with transparency, max 5MB). Uses AWS S3 for storage.

{% endblock %}