{% extends "base.html" %} {% load static i18n %} {% block title %}{% trans "Update Zoom Meeting" %} - {{ block.super }}{% endblock %} {% block customCSS %} {% endblock %} {% block content %}
{# Display Django messages outside the card. Using safe if/else for tag mapping. #} {% if messages %}
{% for message in messages %} {% if 'error' in message.tags %}
{% elif 'success' in message.tags %}
{% elif 'warning' in message.tags %}
{% else %}
{% endif %} {{ message }}
{% endfor %}
{% endif %}

{# Using a generic edit/pencil icon for update #} {% trans "Update Zoom Meeting" %}

{% trans "Modify the details of your scheduled meeting" %}

{# BUTTON 1: Back to Details (matching the visual style of the create page's "Back to Meetings") #} {# Arrow left icon #} {% trans "Back to Details" %}
{% csrf_token %}
{{ form.topic }}
{{ form.start_time }}
{{ form.duration }}
{# BUTTONS 2 & 3: Action Buttons at the bottom #}
{% trans "Cancel" %}
{% endblock %}