{% load c3assemblies %} {% load i18n %} {% load widget_tweaks %}
{% render_field form.name class+="form-control" title=form.name.help_text %}
{% render_field form.slug class+="form-control" title=form.slug.help_text %}
{% with conference.get_single_supported_assembly_type as c_ssat %} {% if c_ssat == None %}
{% if conference.support_assembly_physical %} {% render_field form.is_physical class+="form-control" title=form.is_physical.help_text %} {% endif %}
{% if conference.support_assembly_virtual %} {% render_field form.is_virtual class+="form-control" title=form.is_virtual.help_text %} {% endif %}
{% if conference.support_assembly_remote %} {% render_field form.is_remote class+="form-control" title=form.is_remote.help_text %} {% endif %}
{% else %}
{% endif %} {% endwith %}
{{ form.instance.get_state_assembly_display }}
{% if conference.support_channels %}
{{ form.instance.get_state_channel_display }}
{% endif %}
{% render_field form.banner_image class+="form-control" title=form.banner_image.help_text %}
{% render_field form.assembly_link class+="form-control" title=form.assembly_link.help_text type="url" %}
{% if conference.support_assembly_remote %}
{% render_field form.assembly_location class+="form-control" title=form.assembly_location.help_text rows=3 %}
{% endif %}
{% render_field form.description_de class+="form-control" %}
{% render_field form.description_en class+="form-control" %}
{% with handled_base_fields='name,slug,is_physical,is_virtual,is_remote,banner_image,assembly_link,assembly_location,description_de,description_en,registration_details'|split:"," %} {% for field in base_fields %} {% if field.name not in handled_base_fields %}
{% if not field.disabled %} {% render_field field class+="form-control" title=field.help_text %} {% else %} {% render_field field class+="form-control" disabled="disabled" %} {% endif %} {% if field.help_text %} {{ field.help_text }} {% endif %} {% for error in field.errors %}
{{ error }}
{% endfor %}
{% endif %} {% endfor %} {% endwith %}
{% render_field form.registration_details class+="form-control" title=form.registration_details.help_text %}