{% extends "withnav_template.html" %} {% from "components/browse-list.html" import browse_list %} {% from "components/table.html" import mapping_table, row, text_field, edit_field, field %} {% block page_title %} Settings – GOV.UK Notify {% endblock %} {% block maincolumn_content %}

Settings

{% call mapping_table( caption='Settings', field_headings=['Label', 'Value', 'Action'], field_headings_visible=False, caption_visible=False ) %} {% call row() %} {{ text_field('Service name' )}} {{ text_field(current_service.name) }} {{ edit_field('Change', url_for('.service_name_change', service_id=current_service.id)) }} {% endcall %} {% call row() %} {{ text_field('Email reply to address')}} {{ text_field( current_service.reply_to_email_address, status='' if current_service.reply_to_email_address else 'default' ) }} {{ edit_field('Change', url_for('.service_set_reply_to_email', service_id=current_service.id)) }} {% endcall %} {% call row() %} {{ text_field('Text message sender')}} {{ text_field(current_service.sms_sender or '40604') }} {{ edit_field('Change', url_for('.service_set_sms_sender', service_id=current_service.id)) }} {% endcall %} {% endcall %}
{% if current_service.restricted %}

Your service is in trial mode

To remove these restrictions request to go live.

{% endif %} {% if current_user.has_permissions([], admin_override=True) %}

Platform admin settings

{% call mapping_table( caption='Settings', field_headings=['Label', 'Value', 'Action'], field_headings_visible=False, caption_visible=False ) %} {% call row() %} {{ text_field('Email branding' )}} {% call field() %} {% if current_service.branding == 'govuk' %} GOV.UK {% elif current_service.branding == 'both' %} GOV.UK and {{ organisation.name if organisation else None }} {% elif current_service.branding == 'org' %} Only {{ organisation.name if organisation else None }} {% endif %} {% endcall %} {{ edit_field('Change', url_for('.service_set_branding_and_org', service_id=current_service.id)) }} {% endcall %} {% endcall %} {% endif %} {% endblock %}