* text-muted -> text-body-secondary * navbar-dark is deprecated * Remove FIXME block, not an issue anymore * Remove `navbar-light`
18 lines
632 B
HTML
18 lines
632 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-body-secondary">{{ 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 %} |