mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-04 10:28:26 -04:00
21 lines
490 B
HTML
21 lines
490 B
HTML
|
|
{% extends "withnav_template.html" %}
|
|||
|
|
|
|||
|
|
{% block page_title %}
|
|||
|
|
{{ session.get('service_name', 'Dashboard') }} – GOV.UK Notify
|
|||
|
|
{% endblock %}
|
|||
|
|
|
|||
|
|
{% block maincolumn_content %}
|
|||
|
|
|
|||
|
|
{% if service.restricted %}
|
|||
|
|
{% include 'views/dashboard/trial-mode-banner.html' %}
|
|||
|
|
{% endif %}
|
|||
|
|
|
|||
|
|
{% if not jobs %}
|
|||
|
|
{% include 'views/dashboard/get-started.html' %}
|
|||
|
|
{% else %}
|
|||
|
|
{% include 'views/dashboard/today.html' %}
|
|||
|
|
{% include 'views/dashboard/jobs.html' %}
|
|||
|
|
{% endif %}
|
|||
|
|
|
|||
|
|
{% endblock %}
|