subpages for adding and canceling pre-approvals and a set of migrations for replacing the old IdApprovedDetail with a slightly less confusing Preapproval model. - Legacy-Id: 4411
35 lines
1.4 KiB
HTML
35 lines
1.4 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% block morecss %}
|
|
.ietf-navset {
|
|
background:#214197 url(/images/yui/sprite.png) repeat-x left -1400px;
|
|
color:white;
|
|
border:1px solid black;
|
|
padding:4px;
|
|
}
|
|
.ietf-navset .selected { font-weight:bold; padding: 0 3px; }
|
|
.ietf-navset a, .ietf-navset a:visited { color: white; padding:0 3px; }
|
|
.cutoff-warning { border: 1px dashed red; background-color: #ffeeaa; padding: 1em 2em; margin: 1em 0px; }
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>IETF Internet-Draft Submission </h1>
|
|
|
|
<div class="ietf-navset">
|
|
{% if selected == "index" %}<span class="selected">Upload</span>{% else %}<a href="{% url submit_index %}">Upload</a>{% endif %} |
|
|
{% if selected == "status" %}<span class="selected">Status</span>{% else %}<a href="{% url submit_status %}">Status</a>{% endif %} |
|
|
{% if selected == "instructions" %}<span class="selected">Tool Instructions</span>{% else %}<a href="{% url submit_tool_instructions %}">Tool Instructions</a>{% endif %} |
|
|
{% if selected == "notewell" %}<span class="selected">NOTE WELL</span>{% else %}<a href="{% url submit_note_well %}">NOTE WELL</a>{% endif %} |
|
|
{% if selected == "approvals" %}<span class="selected">Approvals</span>{% else %}<a href="{% url submit_approvals %}">Approvals</a>{% endif %}
|
|
</div>
|
|
|
|
{% if form.cutoff_warning %}
|
|
<div class="cutoff-warning">
|
|
{{ form.cutoff_warning|safe }}
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% block submit_content %}
|
|
{% endblock %}
|
|
{% endblock %}
|