{% extends "base.html" %} {% load static i18n %} {% block title %}{% trans "Update Zoom Meeting" %} - {{ block.super }}{% endblock %} {% block customCSS %} {% endblock %} {% block content %}

{% trans "Update Zoom Meeting" %}

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

{# Apply KAAT-S theme styles to Django messages #} {% if messages %}
{% for message in messages %} {# Use message tags to map to alert classes: success, danger, info #}
{{ message }}
{% endfor %}
{% endif %}

{% trans "Meeting Information" %}

{% csrf_token %}
{{ form.topic }}
{{ form.start_time }}
{{ form.duration }}
{# Using custom secondary button for 'Cancel' link #} {% trans "Cancel" %}
{% endblock %}