diff --git a/exodus/reports/templates/report_details.html b/exodus/reports/templates/report_details.html
index 8e9d2069..d1605626 100644
--- a/exodus/reports/templates/report_details.html
+++ b/exodus/reports/templates/report_details.html
@@ -1,6 +1,14 @@
{% extends "base/base.html"%}
{% load i18n %}
{% get_current_language as LANGUAGE_CODE %}
+{% block head %}
+ {% if report %}
+
+
+
+
{% trans "Report for" %} {{ report.application.handle }} {{ report.application.version }} - εxodus
+ {% endif %}
+{% endblock %}
{% block content %}
{% load static %}
{% if report %}
diff --git a/exodus/reports/templates/reports_home.html b/exodus/reports/templates/reports_home.html
index 5c655b51..6a5b12f2 100644
--- a/exodus/reports/templates/reports_home.html
+++ b/exodus/reports/templates/reports_home.html
@@ -1,6 +1,12 @@
{% extends "base/base.html" %}
{% load i18n %}
{% get_current_language as LANGUAGE_CODE %}
+{% block head %}
+
+
+
+
{% trans "Reports" %} - εxodus
+{% endblock %}
{% block content %}
{% load static %}
diff --git a/exodus/reports/templates/reports_list.html b/exodus/reports/templates/reports_list.html
index 2d12cfef..ffd2e3dd 100644
--- a/exodus/reports/templates/reports_list.html
+++ b/exodus/reports/templates/reports_list.html
@@ -1,6 +1,19 @@
{% extends "base/base.html" %}
{% load i18n %}
{% get_current_language as LANGUAGE_CODE %}
+{% block head %}
+ {% if handle %}
+
+
+
+
{% trans "Reports list for" %} {{ handle }} - εxodus
+ {% else %}
+
+
+
+
{% trans "Reports list" %} - εxodus
+ {% endif %}
+{% endblock %}
{% block content %}
{% load static %}
diff --git a/exodus/trackers/templates/stats_details.html b/exodus/trackers/templates/stats_details.html
index 4496e5c3..86a82216 100644
--- a/exodus/trackers/templates/stats_details.html
+++ b/exodus/trackers/templates/stats_details.html
@@ -1,5 +1,11 @@
{% extends "base/base.html" %}
{% load i18n %}
+{% block head %}
+
+
+
+
{% trans "Statistics" %} - εxodus
+{% endblock %}
{% block content %}
{% load static %}
diff --git a/exodus/trackers/templates/tracker_details.html b/exodus/trackers/templates/tracker_details.html
index 9221c72f..6c003dc9 100644
--- a/exodus/trackers/templates/tracker_details.html
+++ b/exodus/trackers/templates/tracker_details.html
@@ -1,6 +1,12 @@
{% extends "base/base.html" %}
{% load i18n %}
{% load markdown %}
+{% block head %}
+
+
+
+
{% trans "Tracker profile for" %} {{ tracker.name }} - εxodus
+{% endblock %}
{% block content %}