{% extends "base.html" %} {# Copyright The IETF Trust 2015, All Rights Reserved #} {% load origin %} {% load bootstrap3 %} {% block title %}{% if submission == None %}Add new submission request email{% else %}Add submission request email to {{ submission.name }}{% endif %}{% endblock %} {% block content %} {% origin %}

Add email

{% if submission == None %}

A new submission request will be created for the given name and revision. The name must take the form "draft-xxx-nn" where xxx is lowercase letters, digits or dashes and nn is the revision number - 00 for the initial revision. For example
   draft-my-spec-00

{% else %}

The email will be added to the submission history for {{ submission.name }}

{% endif %}
{% csrf_token %} {% bootstrap_form form %} {% buttons %} Back {% endbuttons %}
{% endblock %}