Skip to main content

max / makenotwork

872 B · 22 lines History Blame Raw
1 {% extends "base.html" %}
2
3 {% block title %}Admin: Mail allowances - Makenotwork{% endblock %}
4 {% block body_attrs %} class="{{ crate::shell::measure(crate::shell::Measure::Wide) }} admin-page"{% endblock %}
5
6 {% block content %}
7 {% include "partials/site_header.html" %}
8
9 <div class="container">
10 {% include "partials/admin_nav.html" %}
11
12 <h1 class="page-title">Mail allowance requests</h1>
13 <p class="section-mono-meta">
14 A creator asks when the monthly allowance stops a send they need to make. Grant the number that fits what they described, which need not be the number they asked for. Granting writes their per-account override; denying leaves the tier default in place.
15 </p>
16
17 <div id="mail-cap-entries">
18 {% include "partials/admin_mail_cap_entries.html" %}
19 </div>
20 </div>
21 {% endblock %}
22