{% extends "base.html" %} {% block title %}Edit info on {{ doc }}{% endblock %} {% block scripts %} function make_bold() { var e = document.getElementById("ballotwarn"); e.setAttribute("class","warning"); } {% endblock %} {% block morecss %} form.edit-info #id_notify { width: 600px; } form.edit-info #id_note { width: 600px; height: 150px; } form.edit-info .actions { padding-top: 20px; } .warning { font-weight: bold; color: #a00; } {% endblock %} {% block content %} {% load ietf_filters %}

Edit info on {{ doc }}

{% for field in form.standard_fields %} {% endfor %}
{{ field.label_tag }}: {{ field }} {% ifequal field.name "telechat_date" %} {% if not ballot_issued %} A ballot for this document has not been issued: Edit Ballot Text {% endif %} {{ form.returning_item }} {{ form.returning_item.label_tag }} {{ form.returning_item.errors }} {% endifequal %} {% ifequal field.name "ad" %} {% if user|in_group:"Area_Director" %} {% endif %} {% endifequal %} {% if field.help_text %}
{{ field.help_text }}
{% endif %} {{ field.errors }}
Back
{% endblock %}