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

{% trans "Update Zoom Meeting" %}

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

{% trans "Back to Details" %}
{% if messages %}
{% for message in messages %} {% endfor %}
{% endif %} {% if form.non_field_errors %} {% endif %}
{% csrf_token %}
{{ form.topic|add_class:"w-full px-4 py-3 border border-gray-200 rounded-xl text-sm focus:ring-2 focus:ring-temple-red/20 focus:border-temple-red outline-none transition" }} {% if form.topic.errors %}
{{ form.topic.errors.0 }}
{% endif %}
{{ form.start_time|add_class:"w-full px-4 py-3 border border-gray-200 rounded-xl text-sm focus:ring-2 focus:ring-temple-red/20 focus:border-temple-red outline-none transition" }} {% if form.start_time.errors %}
{{ form.start_time.errors.0 }}
{% endif %}
{{ form.duration|add_class:"w-full px-4 py-3 border border-gray-200 rounded-xl text-sm focus:ring-2 focus:ring-temple-red/20 focus:border-temple-red outline-none transition" }} {% if form.duration.errors %}
{{ form.duration.errors.0 }}
{% endif %}
{% trans "Cancel" %}
{% endblock %}