Files
notifications-admin/app/templates/views/service-settings/set-basic-view.html
karlchillmaid 6b33bc7956 Remove reference to 'one-off' messages
Basic view should work for sending multiple messages too.
2018-07-31 12:35:36 +01:00

40 lines
1.2 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>
Control what other people see when they sign in to Notify.
</p>
<p>
Choose basic view for team members who only need to:
</p>
<ul class="list list-bullet">
<li>send messages using existing templates</li>
<li>see a list of their sent messages</li>
</ul>
<p>
Basic view hides the dashboard and other options, making Notify quicker and simpler to use.
</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 %}