datatracker/ietf/templates/ipr/notify.html
Lars Eggert bbf088e18b Hopefully the final check-ins.
- Legacy-Id: 19909
2022-02-08 17:29:15 +00:00

18 lines
623 B
HTML

{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% load django_bootstrap5 %}
{% block title %}Send Notification{{ formset|pluralize }}{% endblock %}
{% block content %}
{% origin %}
<h1>
Send Notification{{ formset|pluralize }}
<br>
<small class="text-muted">{{ ipr }}</small>
</h1>
<form class="my-3 send-notification" method="post">
{% csrf_token %}
{% bootstrap_formset formset %}
<button type="submit" class="btn btn-primary">Send Notification{{ formset|pluralize }}</button>
</form>
{% endblock %}