mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-21 08:29:27 -04:00
Takes the number of emails and SMS fragments sent from: https://github.com/alphagov/notifications-api/pull/273 Using these numbers it’s possible to show: - how much of your allowance is left - or how much you have spent For now the allowance and rates are hard coded. Only for users that have manage service.
18 lines
372 B
HTML
18 lines
372 B
HTML
{% extends "withnav_template.html" %}
|
||
|
||
{% block page_title %}
|
||
{{ current_service.name }} – GOV.UK Notify
|
||
{% endblock %}
|
||
|
||
{% block maincolumn_content %}
|
||
<h1 class='heading-large'>
|
||
Templates sent this year
|
||
</h1>
|
||
<p>
|
||
1 April 2016 to date
|
||
</p>
|
||
{% with period = "" %}
|
||
{% include 'views/dashboard/template-statistics.html' %}
|
||
{% endwith %}
|
||
{% endblock %}
|