datatracker/ietf/templates/ipr/notify.html

23 lines
588 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>
<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 %}