{% extends "base.html" %} {# Copyright The IETF Trust 2015, All Rights Reserved #} {% load origin %} {% load bootstrap3 %} {% block title %}{% if liaison %}Edit liaison: {{ liaison }}{% else %}Send Liaison Statement{% endif %}{% endblock %} {% block pagehead %} {% endblock %} {% block morecss %} .widget { height: auto; min-height: 34px; } {% endblock %} {% block content %} {% origin %}

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

{% bootstrap_messages %} {% 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 %} {% for fieldset in form.get_fieldsets %}

{{ fieldset.name }}

{% for field in fieldset.fields %} {% bootstrap_field field layout="horizontal" %} {% endfor %} {% endfor %} {% buttons %} Cancel {% if not liaison %} {% else %} {% endif %} {% endbuttons %}
{% endblock %} {% block js %} {% endblock %}