mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-05 10:53:28 -05:00
This commit adds a 3 screen tour, similar to those used on GOV.UK Verify and Passports. We guerilla tested this on Friday, and it really helped users to build a mental model of how Notify works, so that when they’re playing around with it they have a greater sense of what they’re aiming to do. This makes concepts like templates and placeholders click more quickly. https://www.pivotaltracker.com/story/show/116710119
31 lines
851 B
HTML
31 lines
851 B
HTML
{% extends "withnav_template.html" %}
|
||
|
||
{% block page_title %}
|
||
{{ session.get('service_name', 'Dashboard') }} – GOV.UK Notify
|
||
{% endblock %}
|
||
|
||
{% block maincolumn_content %}
|
||
|
||
{% if not templates and current_user.has_permissions(['send_texts', 'send_emails', 'send_letters'], any_=True) %}
|
||
{% include 'views/dashboard/get-started.html' %}
|
||
{% elif service.restricted %}
|
||
<div class="dashboard">
|
||
{% include 'views/dashboard/trial-mode-banner.html' %}
|
||
</div>
|
||
{% endif %}
|
||
|
||
|
||
<div
|
||
data-module="update-content"
|
||
data-resource="{{url_for(".service_dashboard_updates", service_id=service_id)}}"
|
||
data-key="today"
|
||
data-interval-seconds="10"
|
||
>
|
||
{% include 'views/dashboard/today.html' %}
|
||
</div>
|
||
|
||
{% include 'views/dashboard/jobs.html' %}
|
||
|
||
|
||
{% endblock %}
|