mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-19 22:13:48 -04:00
One of the big things we found in user research was that people were uncertain what the effect of giving someone basic view was. So in the spirit of ‘show don’t tell’, this commit adds a way for users to preview basic view. They can go into the preview and click around as much as they like, just as if they really had the basic view assigned to them. Once they have seen enough they can return to the settings page where they can decide whether or not to switch basic view on for real.
37 lines
1.0 KiB
HTML
37 lines
1.0 KiB
HTML
{% extends "withnav_template.html" %}
|
||
{% from "components/radios.html" import radios %}
|
||
{% from "components/page-footer.html" import page_footer %}
|
||
|
||
{% block service_page_title %}
|
||
Basic view
|
||
{% endblock %}
|
||
|
||
{% block maincolumn_content %}
|
||
|
||
<div class="grid-row">
|
||
<form method="post" class="column-five-sixths">
|
||
<h1 class="heading-large">Basic view</h1>
|
||
<p>
|
||
Basic view lets you restrict a team member to only:
|
||
</p>
|
||
<ul class="list list-bullet">
|
||
<li>send messages</li>
|
||
<li>see sent messages</li>
|
||
</ul>
|
||
<p>
|
||
You’ll get to choose which team members have basic view.
|
||
</p>
|
||
<p>
|
||
<a href="{{ url_for('main.preview_basic_view', service_id=current_service.id) }}">See a preview of basic view</a>.
|
||
</p>
|
||
{{ radios(form.enabled, hide_legend=True) }}
|
||
{{ page_footer(
|
||
'Save',
|
||
back_link=url_for('.service_settings', service_id=current_service.id),
|
||
back_link_text='Back to settings'
|
||
) }}
|
||
</form>
|
||
</div>
|
||
|
||
{% endblock %}
|