From 07358f27b793e4343afa33b2e6033d6d3b229fc5 Mon Sep 17 00:00:00 2001 From: karlchillmaid Date: Wed, 16 Oct 2019 10:44:07 +0100 Subject: [PATCH] Fix if statements Swap content round so the if statement works properly. --- app/templates/views/get-started | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app/templates/views/get-started b/app/templates/views/get-started index 92a220b72..b67b338a2 100644 --- a/app/templates/views/get-started +++ b/app/templates/views/get-started @@ -60,20 +60,20 @@
  • Manage your team members and settings

    {% if not current_user.is_authenticated %} -

    Check that each of your team members has the right permissions.

    -

    Review your settings to make sure you have the right branding and sender information.

    - {% else %}

    Check that each of your team members has the right permissions.

    Review your settings to make sure you have the right branding and sender information.

    + {% else %} +

    Check that each of your team members has the right permissions.

    +

    Review your settings to make sure you have the right branding and sender information.

    {% endif %}
  • Start sending messages

    {% if not current_user.is_authenticated %} -

    You should request to go live when you’re ready to start sending messages to people outside your team.

    - {% else %}

    You should request to go live when you’re ready to start sending messages to people outside your team.

    + {% else %} +

    You should request to go live when you’re ready to start sending messages to people outside your team.

    {% endif %}

    When we receive your request we’ll get back to you within one working day.