diff --git a/app/templates/views/choose-template.html b/app/templates/views/choose-template.html index 1b97ad899..2d0b56551 100644 --- a/app/templates/views/choose-template.html +++ b/app/templates/views/choose-template.html @@ -15,6 +15,10 @@
+ You need a template before you can send + {{ 'emails' if 'email' == template_type else 'text messages' }} +
Add a new template {% else %}You need to ask your service manager to add templates before you can send messages
diff --git a/app/templates/views/dashboard/dashboard.html b/app/templates/views/dashboard/dashboard.html index bdf9c1838..4fe589ed5 100644 --- a/app/templates/views/dashboard/dashboard.html +++ b/app/templates/views/dashboard/dashboard.html @@ -10,12 +10,11 @@ {% include 'views/dashboard/trial-mode-banner.html' %} {% endif %} - {% if not jobs %} - {% if current_user.has_permissions(['manage_templates','send_texts', 'send_emails', 'send_letters']) %} - {% include 'views/dashboard/get-started.html' %} - {% endif%} - {% else %} + {% if not templates and current_user.has_permissions(['send_texts', 'send_emails', 'send_letters'], any_=True) %} + {% include 'views/dashboard/get-started.html' %} + {% endif %} + {% if templates %}+ You need to set up a template before you can send messages +
++
+ You need to ask your service manager to set up some templates before you can send messages +
+ +{% endif %}