More HTML fixes. - Legacy-Id: 9787 Note: SVN reference [9766] has been migrated to Git commit 77f555bdbdfa653e4b5a0589ead9eda6632f10d7
34 lines
829 B
HTML
34 lines
829 B
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
|
{% load origin %}
|
|
|
|
{% load bootstrap3 %}
|
|
|
|
{% block title %}Email submitter of {{ ipr.title }}{% endblock %}
|
|
|
|
{% block pagehead %}
|
|
<link rel="stylesheet" href="/css/lib/datepicker3.css">
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{% origin %}
|
|
<h1>Email submitter<br><small>{{ ipr.title }}</small></h1>
|
|
|
|
{% bootstrap_messages %}
|
|
|
|
<form method="post" class="show-required">
|
|
{% csrf_token %}
|
|
|
|
{% bootstrap_form form %}
|
|
|
|
{% buttons %}
|
|
<button type="submit" class="btn btn-primary">Send Email</button>
|
|
<a class="btn btn-default pull-right" href="{% url "ipr_history" id=ipr.id %}">Back</a>
|
|
{% endbuttons %}
|
|
</form>
|
|
{% endblock %}
|
|
|
|
{% block js %}
|
|
<script src="/js/lib/bootstrap-datepicker.js"></script>
|
|
{% endblock %}
|