Files
notifications-admin/app/templates/views/service-settings/set-basic-view.html
T

40 lines
1.2 KiB
HTML
Raw Normal View History

2018-07-09 17:04:02 +01:00
{% extends "withnav_template.html" %}
{% from "components/radios.html" import radios %}
2018-07-09 17:04:02 +01:00
{% 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">
2018-07-09 17:04:02 +01:00
<h1 class="heading-large">Basic view</h1>
<p>
2018-08-02 16:58:43 +01:00
Hide the dashboard and other options from team members who only need to send messages.
2018-07-16 17:00:02 +01:00
</p>
<p>
2018-08-02 17:35:37 +01:00
Turn on basic view then edit team members permissions.
2018-08-02 16:58:43 +01:00
</p>
<p>
Team members with basic view can only:
2018-07-09 17:04:02 +01:00
</p>
<ul class="list list-bullet">
2018-07-31 12:35:36 +01:00
<li>send messages using existing templates</li>
2018-08-02 17:09:20 +01:00
<li>see a list of sent messages</li>
2018-07-09 17:04:02 +01:00
</ul>
2018-07-10 11:26:07 +01:00
<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) }}
2018-07-09 17:04:02 +01:00
{{ page_footer(
'Save',
2018-07-09 17:04:02 +01:00
back_link=url_for('.service_settings', service_id=current_service.id),
back_link_text='Back to settings'
) }}
</form>
2018-07-09 17:04:02 +01:00
</div>
{% endblock %}