diff --git a/commcare_connect/templates/403.html b/commcare_connect/templates/403.html index b9cfc06d58..5d06c5a915 100644 --- a/commcare_connect/templates/403.html +++ b/commcare_connect/templates/403.html @@ -1,9 +1,12 @@ {% extends "base.html" %} - {% block title %}Forbidden (403){% endblock %} - {% block content %} -
{% if exception %}{{ exception }}{% else %}You're not allowed to access this page.{% endif %}
++ {% if exception %} + {{ exception }} + {% else %} + You're not allowed to access this page. + {% endif %} +
{% endblock content %} diff --git a/commcare_connect/templates/404.html b/commcare_connect/templates/404.html index 4e82d3d83a..3689b58249 100644 --- a/commcare_connect/templates/404.html +++ b/commcare_connect/templates/404.html @@ -1,9 +1,12 @@ {% extends "base.html" %} - {% block title %}Page not found{% endblock %} - {% block content %} -{% if exception %}{{ exception }}{% else %}This is not the page you were looking for.{% endif %}
++ {% if exception %} + {{ exception }} + {% else %} + This is not the page you were looking for. + {% endif %} +
{% endblock content %} diff --git a/commcare_connect/templates/500.html b/commcare_connect/templates/500.html index fec31eee60..25390cac9d 100644 --- a/commcare_connect/templates/500.html +++ b/commcare_connect/templates/500.html @@ -1,11 +1,9 @@ {% extends "base.html" %} - {% block title %}Server Error{% endblock %} - {% block content %} -We track these errors automatically, but if the problem persists feel free to contact us. In the meantime, try refreshing.
++ We track these errors automatically, but if the problem persists feel free to contact us. In the meantime, try refreshing. +
{% endblock content %} diff --git a/commcare_connect/templates/account/account_inactive.html b/commcare_connect/templates/account/account_inactive.html index 31b4d8d435..1d39781bc5 100644 --- a/commcare_connect/templates/account/account_inactive.html +++ b/commcare_connect/templates/account/account_inactive.html @@ -1,13 +1,11 @@ {% extends "account/base.html" %} - {% load i18n %} - -{% block head_title %}{% translate "Account Inactive" %}{% endblock %} - +{% block head_title %} + {% translate "Account Inactive" %} +{% endblock %} {% block inner %}{% translate "This account is inactive." %}
{% translate 'The following e-mail addresses are associated with your account:' %}
- -