{% extends "wagtailadmin/base.html" %} {% load i18n %} {% load l10n %} {% load wagtailadmin_tags wagtailimages_tags static %} {% block titletag %}{% blocktrans with title=page.get_admin_display_title %}Hello{{ title }} {% endblocktrans %}{% endblock %} {% block extra_css %} {{ block.super }} {{ form_media.css }} {% endblock %} {% block content %} {% trans "Zoom Integration" as header_str %} {% include "wagtailadmin/shared/header.html" with title=header_str icon="cog" %}
{% if zoom_error %}
{{ zoom_error }}
{% else %} {% if not has_form_fields %}
Page has no form fields. Please add form fields and try again.
{% if page_edit_url %}
Add Form Fields
{% endif %} {% else %}

Match '{{ zoom_event.topic }}' fields with {{ page.title }} form fields

{% if page_edit_url %}
Edit Form Fields
{% endif %}
{% if form.non_field_errors %}
{% include "wagtailadmin/shared/non_field_errors.html" with form=form %}
{% endif %}
{% endif %} {% endif %}
{% endblock %}