mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-11 10:28:41 -04:00
Make a reusable ‘content’ template
This is for static content pages and makes sure they always have the right column widths and sub navigation.
This commit is contained in:
@@ -1,48 +1,38 @@
|
||||
{% extends "withoutnav_template.html" %}
|
||||
{% from "components/sub-navigation.html" import sub_navigation %}
|
||||
{% extends "content_template.html" %}
|
||||
|
||||
{% block per_page_title %}
|
||||
Using Notify
|
||||
Trial mode
|
||||
{% endblock %}
|
||||
|
||||
{% block maincolumn_content %}
|
||||
{% block content_column_content %}
|
||||
|
||||
<div class="grid-row">
|
||||
<div class="column-one-third">
|
||||
{{ sub_navigation(navigation_links) }}
|
||||
</div>
|
||||
<div class="column-two-thirds">
|
||||
<h1 class="heading-large">Trial mode</h1>
|
||||
|
||||
<h1 class="heading-large">Trial mode</h1>
|
||||
|
||||
<p>When you set up a new service it will start in trial mode. This lets you try out GOV.UK Notify, with a few restrictions.</p>
|
||||
<p>A service in trial mode can only:</p>
|
||||
<ul class="list list-bullet">
|
||||
<li>send 50 text messages and emails per day</li>
|
||||
<li>send messages to you and other people in your team</li>
|
||||
<li>create letter templates, but not send them</li>
|
||||
</ul>
|
||||
|
||||
<p>
|
||||
To remove these restrictions, you can
|
||||
{% if current_service and current_service.trial_mode %}
|
||||
<a href="{{ url_for('.request_to_go_live', service_id=current_service.id) }}">send us a request to go live</a>.
|
||||
{% else %}
|
||||
send us a request to go live.
|
||||
{% endif %}
|
||||
</p>
|
||||
|
||||
<p>Before you can request to go live, you must:</p>
|
||||
<p>When you set up a new service it will start in trial mode. This lets you try out GOV.UK Notify, with a few restrictions.</p>
|
||||
<p>A service in trial mode can only:</p>
|
||||
<ul class="list list-bullet">
|
||||
<li>sign our data sharing and financial agreement</li>
|
||||
<li>accept our terms of use</li>
|
||||
<li>set up your service so you’re ready to send and receive messages</li>
|
||||
</ul>
|
||||
<p>
|
||||
When we receive your request we’ll get back to you within one working day.
|
||||
</p>
|
||||
<li>send 50 text messages and emails per day</li>
|
||||
<li>send messages to you and other people in your team</li>
|
||||
<li>create letter templates, but not send them</li>
|
||||
</ul>
|
||||
|
||||
<p>
|
||||
To remove these restrictions, you can
|
||||
{% if current_service and current_service.trial_mode %}
|
||||
<a href="{{ url_for('.request_to_go_live', service_id=current_service.id) }}">send us a request to go live</a>.
|
||||
{% else %}
|
||||
send us a request to go live.
|
||||
{% endif %}
|
||||
</p>
|
||||
|
||||
</div>
|
||||
<p>Before you can request to go live, you must:</p>
|
||||
<ul class="list list-bullet">
|
||||
<li>sign our data sharing and financial agreement</li>
|
||||
<li>accept our terms of use</li>
|
||||
<li>set up your service so you’re ready to send and receive messages</li>
|
||||
</ul>
|
||||
<p>
|
||||
When we receive your request we’ll get back to you within one working day.
|
||||
</p>
|
||||
|
||||
{% endblock %}
|
||||
|
||||
Reference in New Issue
Block a user