diff --git a/app/assets/stylesheets/_grids.scss b/app/assets/stylesheets/_grids.scss
index 183a85630..4f571ca13 100644
--- a/app/assets/stylesheets/_grids.scss
+++ b/app/assets/stylesheets/_grids.scss
@@ -35,6 +35,10 @@
margin-bottom: $gutter-half;
}
+.bottom-gutter-2 {
+ margin-bottom: $gutter * 2;
+}
+
.align-with-heading {
display: block;
text-align: center;
diff --git a/app/templates/views/service-settings.html b/app/templates/views/service-settings.html
index 07b0b243e..f064030fb 100644
--- a/app/templates/views/service-settings.html
+++ b/app/templates/views/service-settings.html
@@ -10,7 +10,7 @@
+
{% call mapping_table(
caption='Settings',
@@ -37,28 +37,22 @@
{{ edit_field('Change', url_for('.service_set_sms_sender', service_id=current_service.id)) }}
{% endcall %}
{% endcall %}
-
- {% call mapping_table(
- caption='Restrictions',
- field_headings=['Label', 'Value', 'Action'],
- field_headings_visible=False,
- caption_visible=True
- ) %}
- {% call row() %}
- {% if current_service.restricted %}
- {{ text_field('Trial mode') }}
- {{ text_field('On') }}
- {{ edit_field('Request to go live', url_for('.service_request_to_go_live', service_id=current_service.id)) }}
- {% else %}
- {{ text_field('Trial mode') }}
- {{ text_field('Off')}}
- {{ edit_field() }}
- {% endif %}
- {% endcall %}
- {% endcall %}
- {% if current_user.has_permissions([], admin_override=True) %}
+
Your service is in trial mode
+
+
+ - you can only send messages to yourself
+ - you can add people to your team, then you can send messages to them too
+ - you can only send 50 messages per day
+
+
+
+ To remove these restrictions
+ request to go live.
+
+
+ {% if false and current_user.has_permissions([], admin_override=True) %}
Platform admin settings