{% extends "base.html" %} {# Copyright The IETF Trust 2015, All Rights Reserved #} {% load origin %} {% load static %} {% load ietf_filters %} {% load django_bootstrap5 widget_tweaks %} {% block title %} {% if liaison %} Edit liaison: {{ liaison }} {% else %} Send Liaison Statement {% endif %} {% endblock %} {% block pagehead %} {{ form.media.css }} {% endblock %} {% block content %} {% origin %}

{% if liaison %} Edit liaison
{{ liaison }} {% else %} Send Liaison Statement {% endif %}

{% if form.errors %}
There were errors in the submitted form -- see below. Please correct these and resubmit.
{% endif %} {% bootstrap_form_errors form %} {% if not liaison %}

If you wish to submit your liaison statement by e-mail, then please send it to statements@ietf.org

Fields marked with are required. For detailed descriptions of the fields see the field help.

{% endif %}
{% csrf_token %}

From

{% bootstrap_field form.from_groups layout="horizontal" %} {% bootstrap_field form.from_contact layout="horizontal" %} {% bootstrap_field form.response_contacts layout="horizontal" %} {% if form.approved %} {% bootstrap_field form.approved layout="horizontal" %} {% endif %}

To

{% bootstrap_field form.to_groups layout="horizontal" %} {% bootstrap_field form.to_contacts layout="horizontal" %}

Other email addresses

{% bootstrap_field form.technical_contacts layout="horizontal" %} {% if form.action_holder_contacts %} {% bootstrap_field form.action_holder_contacts layout="horizontal" %} {% endif %} {% bootstrap_field form.cc_contacts layout="horizontal" %}

Purpose

{% bootstrap_field form.purpose layout="horizontal" %} {% bootstrap_field form.deadline layout="horizontal" %}

Reference

{% bootstrap_field form.other_identifiers layout="horizontal" %} {% bootstrap_field form.related_to layout="horizontal" %}

Liaison Statement

{% bootstrap_field form.title layout="horizontal" %} {% bootstrap_field form.submitted_date layout="horizontal" %} {% bootstrap_field form.body layout="horizontal" %}

{{ form.attachments.label }}

{{ form.attachments }}

Add attachment

{% bootstrap_field form.attach_title layout="horizontal" %} {% bootstrap_field form.attach_file layout="horizontal" %} {% bootstrap_field form.attach_button layout="horizontal" %} Cancel {% if not liaison %} {% else %} {% endif %}
{% endblock %} {% block js %} {{ form.media.js }} {% endblock %}