First round of HTML fixes identified by test-crawl --vnu. - Legacy-Id: 9764 Note: SVN reference [9733] has been migrated to Git commit 205df716f8bf4b7dae9e2637f3aa1ba048a158f9
28 lines
700 B
HTML
28 lines
700 B
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
|
{% load origin %}
|
|
|
|
{% load bootstrap3 %}
|
|
|
|
{% block title %}Add email on {{ ipr.title }}{% endblock %}
|
|
|
|
{% block content %}
|
|
{% origin %}
|
|
<h1>Add email<br><small>{{ ipr }}</small></h1>
|
|
|
|
<p>The email will be added to the history trail of the disclosure.</p>
|
|
|
|
{% bootstrap_messages %}
|
|
|
|
<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 "ipr_history" id=ipr.id %}">Back</a>
|
|
{% endbuttons %}
|
|
</form>
|
|
{% endblock %}
|