forked from adamlaska/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadd_submit_email.html
More file actions
37 lines (29 loc) · 1.17 KB
/
add_submit_email.html
File metadata and controls
37 lines (29 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{% 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 %}
<h1>Add email</h1>
{% if submission == None %}
<p>
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<br/>
draft-my-spec-00
</p>
{% else %}
<p>
The email will be added to the submission history for {{ submission.name }}
</p>
{% endif %}
<form class="add-email" method="post">
{% csrf_token %}
{% bootstrap_form form %}
{% buttons %}
<button type="submit" class="btn btn-primary">Add Email</button>
<a class="btn btn-default pull-right" href="{% url "ietf.submit.views.manualpost" %}">Back</a>
{% endbuttons %}
</form>
{% endblock %}