25 lines
616 B
HTML
25 lines
616 B
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
|
{% load origin %}
|
|
|
|
{% load bootstrap3 %}
|
|
|
|
{% block title %}Send Notification{{ formset|pluralize }}{% endblock %}
|
|
|
|
{% block content %}
|
|
{% origin %}
|
|
<h1>Send Notification{{ formset|pluralize }}<br><small>{{ ipr }}</small></h1>
|
|
|
|
{% bootstrap_messages %}
|
|
|
|
<form class="send-notification" method="post">
|
|
{% csrf_token %}
|
|
|
|
{% bootstrap_formset formset %}
|
|
|
|
{% buttons %}
|
|
<button type="submit" class="btn btn-primary">Send Notification{{ formset|pluralize }}</button>
|
|
{% endbuttons %}
|
|
</form>
|
|
{% endblock %}
|