32 lines
997 B
HTML
32 lines
997 B
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2007, All Rights Reserved #}
|
|
{% load ietf_filters %}
|
|
{% block title %}{% if liaison %}Edit liaison: {{ liaison }}{% else %}Send Liaison Statement{% endif %}{% endblock %}
|
|
|
|
{% block pagehead %}
|
|
{{ form.media }}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>{% if liaison %}Edit liaison: {{ liaison }}{% else %}Send Liaison Statement{% endif %}</h1>
|
|
|
|
<div class="js-info">
|
|
Your browser has Javascript disabled. Please enable javascript and reload the page.
|
|
<script type="text/javascript">
|
|
(function ($) {
|
|
$(".js-info").hide();
|
|
})(jQuery);
|
|
</script>
|
|
</div>
|
|
|
|
{% if not liaison %}
|
|
<ul>
|
|
<li>If you wish to submit your liaison statement by e-mail, then please send it to <a href="mailto:statements@ietf.org">statements@ietf.org</a></li>
|
|
<li>Fields marked with <span class="fieldRequired">*</span> are required. For detailed descriptions of the fields see <a href="/liaison/help/fields/">Field help</a></li>
|
|
</ul>
|
|
{% endif %}
|
|
|
|
{{ form }}
|
|
|
|
{% endblock %}
|