mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-06 01:19:00 -04:00
We cover this stuff in the tour now. It can also show up if you delete all your templates.
31 lines
844 B
HTML
31 lines
844 B
HTML
{% extends "withnav_template.html" %}
|
||
|
||
{% block page_title %}
|
||
{{ current_service.name }} – GOV.UK Notify
|
||
{% endblock %}
|
||
|
||
{% block maincolumn_content %}
|
||
|
||
<div class="dashboard">
|
||
|
||
<h1 class="visuallyhidden">Dashboard</h1>
|
||
|
||
{% if current_user.has_permissions([
|
||
'manage_templates', 'manage_api_keys', 'manage_users', 'manage_settings
|
||
'], any_=True, admin_override=True) %}
|
||
{% if current_service.restricted %}
|
||
{% include 'views/dashboard/trial-mode-banner.html' %}
|
||
{% endif %}
|
||
{% elif not current_user.has_permissions(['send_texts', 'send_emails', 'send_letters'], any_=True) %}
|
||
{% include 'views/dashboard/no-permissions-banner.html' %}
|
||
{% endif %}
|
||
|
||
<h2 class="heading-medium">
|
||
In the last 7 days
|
||
</h2>
|
||
{% include 'views/dashboard/today.html' %}
|
||
|
||
</div>
|
||
|
||
{% endblock %}
|