mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-31 11:49:58 -04:00
> We show the last weeks template usage on the dashboard, which is > great, but if you're looking for longer term trends, you're out of > luck... > So, let's let you see more on a more detailed page (linked from the > dashboard). Initially this should just show you all templates that you > have used ever and the count for each. Order same as dashboard, most > popular first. https://www.pivotaltracker.com/story/show/117614585
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 used this year
|
||
</h1>
|
||
<p>
|
||
1 April 2016 to date
|
||
</p>
|
||
{% with period = "" %}
|
||
{% include 'views/dashboard/template-statistics.html' %}
|
||
{% endwith %}
|
||
{% endblock %}
|