contentdb/app/templates/admin/send_bulk_notification.html

24 lines
539 B
HTML

{% extends "base.html" %}
{% block title %}
{{ _("Send bulk notification") }}
{% endblock %}
{% block content %}
<h1>{{ self.title() }}</h1>
<p class="alert alert-danger">
<b>BE VERY CAREFUL.</b>
This will send a notification to all active users.
</p>
{% from "macros/forms.html" import render_field, render_submit_field %}
<form action="" method="POST" class="form" role="form">
{{ form.hidden_tag() }}
{{ render_field(form.title) }}
{{ render_field(form.url) }}
{{ render_submit_field(form.submit) }}
</form>
{% endblock %}