{% extends "admin/base.html" %} {% block title %}Competitions Management{% endblock %} {% block extra_styles %} {% endblock %} {% block content %}

Competitions Management

Add New Competition

{% for season in seasons %}

Enter each award on a new line

Existing Competitions

{% for comp in competitions %}

{{ comp.event_name }}

{{ comp.season }} · {{ comp.date }}

{{ comp.description }}

{% if comp.awards %}

🏆 {{ comp.awards|replace('|', ' · ') }}

{% endif %}

Enter each award on a new line

{% if comp.image_path %}

Current image: {{ comp.image_path }}

{% endif %}
{% endfor %}
{% endblock %}