diff --git a/opentech/apply/activity/templates/messages/email/determination.html b/opentech/apply/activity/templates/messages/email/determination.html index 62fe5a032cb9afd09c85619779dd0dbc26ffd4a5..3350013084a9e255324ceb63d94358e8fb849210 100644 --- a/opentech/apply/activity/templates/messages/email/determination.html +++ b/opentech/apply/activity/templates/messages/email/determination.html @@ -1,6 +1,8 @@ {% extends "messages/email/applicant_base.html" %} {% load bleach_tags %} +{% block title %}Determination for {{ object.title }}{% endblock %} + {% block content %} Your application has been reviewed and the outcome is: {{ submission.determination.clean_outcome }} diff --git a/opentech/apply/dashboard/templates/dashboard/dashboard.html b/opentech/apply/dashboard/templates/dashboard/dashboard.html index a1e56450f741d3740cc0454fcda688144f5ebe06..4afdbefae594665ff22abdc75b33b53a95524e45 100644 --- a/opentech/apply/dashboard/templates/dashboard/dashboard.html +++ b/opentech/apply/dashboard/templates/dashboard/dashboard.html @@ -1,7 +1,7 @@ {% extends "base-apply.html" %} {% load render_table from django_tables2 %} -{% block title %}OTF Dashboard{% endblock %} +{% block title %}Dashboard{% endblock %} {% block content %} <div class="admin-bar"> diff --git a/opentech/apply/determinations/templates/determinations/determination_detail.html b/opentech/apply/determinations/templates/determinations/determination_detail.html index cc968e9c94f2dcc80cb0366def45a54a27beb22d..1740acebf4c09074b4d5874ed7fc901724984fad 100644 --- a/opentech/apply/determinations/templates/determinations/determination_detail.html +++ b/opentech/apply/determinations/templates/determinations/determination_detail.html @@ -1,6 +1,8 @@ {% extends "base-apply.html" %} {% load bleach_tags %} +{% block title %}Determination for {{ determination.submission.title }}{% endblock %} + {% block content %} <div class="admin-bar"> <div class="admin-bar__inner"> diff --git a/opentech/templates/base-apply.html b/opentech/templates/base-apply.html index f44eb0c3f1136fa8acaf6991cf72908b15f64127..6355f6438d7e4ff250f20b46311d2930ce0303f7 100644 --- a/opentech/templates/base-apply.html +++ b/opentech/templates/base-apply.html @@ -3,7 +3,7 @@ <head> {# TODO fallbacks if page is not defined e.g. for 404 page #} <meta charset="utf-8" /> - <title>{% block title_prefix %}{{ TITLE_PREFIX }}{% endblock %}{% block title %}{% if page.seo_title %}{{ page.seo_title }}{% else %}{{ page.title }}{% endif %}{% endblock %}{% block title_suffix %}{{ TITLE_SUFFIX }}{% endblock %}</title> + <title>{% block title_prefix %}{{ request.site.site_name }} | {% endblock %}{% block title %}{% if page.seo_title %}{{ page.seo_title }}{% else %}{{ page.title }}{% endif %}{% endblock %}{% block title_suffix %}{{ TITLE_SUFFIX }}{% endblock %}</title> <meta name="description" content="{% if page.search_description %}{{ page.search_description }}{% else %}{{ page.listing_summary }}{% endif %}" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> diff --git a/opentech/templates/base.html b/opentech/templates/base.html index 4285eaf19d49c039e10186e6f2acf6b78e8f898c..6f488df26fa4df6ee380666dd358d075bb1341d1 100644 --- a/opentech/templates/base.html +++ b/opentech/templates/base.html @@ -3,7 +3,7 @@ <head> {# TODO fallbacks if page is not defined e.g. for 404 page #} <meta charset="utf-8" /> - <title>{% block title_prefix %}{{ TITLE_PREFIX }}{% endblock %}{% block title %}{% if page.seo_title %}{{ page.seo_title }}{% else %}{{ page.title }}{% endif %}{% endblock %}{% block title_suffix %}{{ TITLE_SUFFIX }}{% endblock %}</title> + <title>{% block title_prefix %}{{ request.site.site_name }} | {% endblock %}{% block title %}{% if page.seo_title %}{{ page.seo_title }}{% else %}{{ page.title }}{% endif %}{% endblock %}{% block title_suffix %}{{ TITLE_SUFFIX }}{% endblock %}</title> <meta name="description" content="{% if page.search_description %}{{ page.search_description }}{% else %}{{ page.listing_summary }}{% endif %}" /> <meta name="viewport" content="width=device-width, initial-scale=1" />