Files
notifications-admin/app/templates/views/service-settings/set-basic-view.html
Chris Hill-Scott 8e6efadb23 Track virtual page view when enabling basic view
So we can see what pages people go to after turning it on.
2018-08-02 15:23:52 +01:00

41 lines
1.1 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{% 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"
data-module="track-form-submission"
>
<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>
Youll 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 %}