diff --git a/ietf/templates/submit/upload_submission.html b/ietf/templates/submit/upload_submission.html index f06e60a4a..768f42ade 100644 --- a/ietf/templates/submit/upload_submission.html +++ b/ietf/templates/submit/upload_submission.html @@ -8,63 +8,107 @@ {% block submit_content %} {% origin %} + {% if form.shutdown and user|has_role:"Secretariat" %} -

WARNING: currently in draft submission blackout period

+

+ Warning: Currently in I-D submission blackout period. +

{% endif %} -

This page is used to submit Internet-Drafts to the Internet-Draft repository.

- {% if form.cutoff_warning %} -
+
{{ form.cutoff_warning|safe }}
{% endif %} {% if not form.shutdown or user|has_role:"Secretariat" %} -

- By submitting your I-D, you are granting some rights to the IETF Trust. Before you submit your I-D, - review the information on the NOTE WELL tab and BCP 78, +

+ By submitting your I-D, you are granting some rights to the IETF Trust. + Before you submit your I-D, review the information on the NOTE WELL tab and + BCP 78, "Rights Contributors Provide to the IETF Trust".

Before you submit your I-D, it is recommended that you check it for nits - using the idnits tool. + using the idnits tool, and + fix them.

- - {% include "submit/problem-reports-footer.html" %} -

Upload an Internet-Draft

+
+
+
+ {% csrf_token %} -

- - The best way to submit an Internet-Draft is to provide a single v3 .xml source file. - The datatracker will generate the .txt and other formats from that file. -
- Source v3 .xml which include external files must be preprocessed through xml2rfc with - the --expand option, to produce a completely expanded (standalone) .xml source - file for upload. -
- The online conversion tool can be used to - convert v2 .xml documents to v3. -
- A single v3 .xml source is preferred. A single v2 .xml source will be accepted. If - neither of those are available, a plain-text document may be provided. One of these - three options must be provided. -
- Other file types are optional. -
-

+
+ {% bootstrap_field form.xml label=' XML source of the I-D' %} +

+ Preferably, submit a standalone + xml2rfc version 3 + source file. You can use this online + conversion service + to convert your I-D to this format. + (You may submit an older + xml2rfc version 2 + file if you must.) +

+
- - {% csrf_token %} +
+
+ +
+
+
+
+ {% bootstrap_field form.txt label=' Plaintext rendering of the I-D'%} +

+ Optional to submit, will be auto-generated based + on the submitted XML. + However, if you cannot for some reason submit XML, you must + submit a plaintext rendering of your I-D. +

+
- {% bootstrap_form form %} +
+ {% bootstrap_field form.pdf label=' PDF rendering of the I-D'%} +

+ Optional to submit, will be auto-generated based + on the submitted XML. +

+
- {% buttons %} - - {% endbuttons %} - - {% endif %} +
+ {% bootstrap_field form.ps label=' Postscript rendering of the I-D'%} +

+ Optional to submit, will be auto-generated based + on the submitted XML. +

+
+
+ + {% bootstrap_form_errors form %} + +
+ {% buttons %} + + {% endbuttons %} +
+ +
+
+ + {% include "submit/problem-reports-footer.html" %}{% endif %} {% endblock %} + +{% block js %} + +{% endblock %} \ No newline at end of file