{% extends "base.html" %} {% block title %}تعديل صورة هيدر{% endblock %} {% block content %}

تعديل صورة: {{ hero.caption or 'بدون تعليق' }}

{{ form.hidden_tag() }}
{{ form.image.label(class="form-label") }} {{ form.image(class="form-control") }} {% if hero.filename %}
الصورة الحالية

اترك فارغًا للحفاظ على الصورة الحالية

{% endif %}
{{ form.caption.label(class="form-label") }} {{ form.caption(class="form-control", value=hero.caption) }}
{{ form.active.label(class="form-check-label") }} {{ form.active(class="form-check-input", checked=hero.active) }}
{{ form.submit(class="btn btn-warning") }} إلغاء
{% endblock %}