From 80bfb0ecc5bd93bd6c92ca9a4c6b3e1c838d19cf Mon Sep 17 00:00:00 2001 From: Doctor Date: Mon, 27 May 2024 00:28:06 +0200 Subject: [PATCH] template: add open graph titles with type, site_name and image --- exodus/analysis_query/templates/query_error.html | 1 + exodus/analysis_query/templates/query_upload.html | 1 + exodus/analysis_query/templates/query_wait.html | 1 + exodus/reports/templates/report_details.html | 1 + exodus/reports/templates/reports_home.html | 1 + exodus/reports/templates/reports_list.html | 2 ++ exodus/trackers/templates/stats_details.html | 1 + exodus/trackers/templates/tracker_details.html | 1 + exodus/trackers/templates/trackers_list.html | 1 + exodus/web/templates/base/base.html | 4 ++++ exodus/web/templates/base/home.html | 1 + exodus/web/templates/base/next.html | 1 + exodus/web/templates/base/organization.html | 1 + exodus/web/templates/base/permissions.html | 1 + exodus/web/templates/base/trackers.html | 1 + exodus/web/templates/base/understand.html | 1 + 16 files changed, 20 insertions(+) diff --git a/exodus/analysis_query/templates/query_error.html b/exodus/analysis_query/templates/query_error.html index bc8cdbb8..d5f3ccc3 100644 --- a/exodus/analysis_query/templates/query_error.html +++ b/exodus/analysis_query/templates/query_error.html @@ -1,5 +1,6 @@ {% extends "base/base.html"%} {% block head %} + {% trans "New analysis" %} - εxodus {% endblock %} {% block content %} diff --git a/exodus/analysis_query/templates/query_upload.html b/exodus/analysis_query/templates/query_upload.html index aa851702..046000d7 100644 --- a/exodus/analysis_query/templates/query_upload.html +++ b/exodus/analysis_query/templates/query_upload.html @@ -3,6 +3,7 @@ {% load static %} {% get_current_language as LANGUAGE_CODE %} {% block head %} + {% trans "New analysis" %} - εxodus {% endblock %} {% block content %} diff --git a/exodus/analysis_query/templates/query_wait.html b/exodus/analysis_query/templates/query_wait.html index 6c84b6d4..227caf0f 100644 --- a/exodus/analysis_query/templates/query_wait.html +++ b/exodus/analysis_query/templates/query_wait.html @@ -3,6 +3,7 @@ {% load static %} {% get_current_language as LANGUAGE_CODE %} {% block head %} + {% trans "New analysis" %} - εxodus {% endblock %} {% block content %} diff --git a/exodus/reports/templates/report_details.html b/exodus/reports/templates/report_details.html index 23f589df..9bb1207d 100644 --- a/exodus/reports/templates/report_details.html +++ b/exodus/reports/templates/report_details.html @@ -3,6 +3,7 @@ {% get_current_language as LANGUAGE_CODE %} {% block head %} {% if report %} + {% trans "Report for" %} {{ report.application.handle }} {{ report.application.version }} - εxodus {% endif %} {% endblock %} diff --git a/exodus/reports/templates/reports_home.html b/exodus/reports/templates/reports_home.html index 6ba7c460..4fb3f163 100644 --- a/exodus/reports/templates/reports_home.html +++ b/exodus/reports/templates/reports_home.html @@ -2,6 +2,7 @@ {% load i18n %} {% get_current_language as LANGUAGE_CODE %} {% block head %} + {% trans "Reports" %} - εxodus {% endblock %} {% block content %} diff --git a/exodus/reports/templates/reports_list.html b/exodus/reports/templates/reports_list.html index 4c155e92..d1a906bf 100644 --- a/exodus/reports/templates/reports_list.html +++ b/exodus/reports/templates/reports_list.html @@ -3,8 +3,10 @@ {% get_current_language as LANGUAGE_CODE %} {% block head %} {% if handle %} + {% trans "Reports list for" %} {{ handle }} - εxodus {% else %} + {% trans "Reports list" %} - εxodus {% endif %} {% endblock %} diff --git a/exodus/trackers/templates/stats_details.html b/exodus/trackers/templates/stats_details.html index 30f2edd0..4850f5c8 100644 --- a/exodus/trackers/templates/stats_details.html +++ b/exodus/trackers/templates/stats_details.html @@ -1,6 +1,7 @@ {% extends "base/base.html" %} {% load i18n %} {% block head %} + {% trans "Statistics" %} - εxodus {% endblock %} {% block content %} diff --git a/exodus/trackers/templates/tracker_details.html b/exodus/trackers/templates/tracker_details.html index 448e3b87..342cb83f 100644 --- a/exodus/trackers/templates/tracker_details.html +++ b/exodus/trackers/templates/tracker_details.html @@ -2,6 +2,7 @@ {% load i18n %} {% load markdown %} {% block head %} + {% trans "Tracker profile for" %} {{ tracker.name }} - εxodus {% endblock %} {% block content %} diff --git a/exodus/trackers/templates/trackers_list.html b/exodus/trackers/templates/trackers_list.html index 0faebc82..61dc0322 100644 --- a/exodus/trackers/templates/trackers_list.html +++ b/exodus/trackers/templates/trackers_list.html @@ -1,6 +1,7 @@ {% extends "base/base.html"%} {% load i18n %} {% block head %} + {% trans "Trackers" %} - εxodus {% endblock %} {% block content %} diff --git a/exodus/web/templates/base/base.html b/exodus/web/templates/base/base.html index e4475ad0..b4fd824c 100644 --- a/exodus/web/templates/base/base.html +++ b/exodus/web/templates/base/base.html @@ -14,7 +14,11 @@ + + + {% block head %} + εxodus {% endblock %} diff --git a/exodus/web/templates/base/home.html b/exodus/web/templates/base/home.html index 766e07d6..8b287bb5 100644 --- a/exodus/web/templates/base/home.html +++ b/exodus/web/templates/base/home.html @@ -1,6 +1,7 @@ {% extends "base/base.html"%} {% load i18n %} {% block head %} + {% trans "Home" %} - εxodus {% endblock %} {% block content %} diff --git a/exodus/web/templates/base/next.html b/exodus/web/templates/base/next.html index c2cff5a2..b63fcd0e 100644 --- a/exodus/web/templates/base/next.html +++ b/exodus/web/templates/base/next.html @@ -2,6 +2,7 @@ {% load i18n %} {% load static %} {% block head %} + {% trans "What's next?" %} - εxodus {% endblock %} {% block content %} diff --git a/exodus/web/templates/base/organization.html b/exodus/web/templates/base/organization.html index 6e48ebab..9d4f9d59 100644 --- a/exodus/web/templates/base/organization.html +++ b/exodus/web/templates/base/organization.html @@ -2,6 +2,7 @@ {% load i18n %} {% load static %} {% block head %} + {% trans "The organization" %} - εxodus {% endblock %} {% block content %} diff --git a/exodus/web/templates/base/permissions.html b/exodus/web/templates/base/permissions.html index 6b0e379c..c5eb6d12 100644 --- a/exodus/web/templates/base/permissions.html +++ b/exodus/web/templates/base/permissions.html @@ -2,6 +2,7 @@ {% load i18n %} {% load static %} {% block head %} + {% trans "Permissions" %} - εxodus {% endblock %} {% block content %} diff --git a/exodus/web/templates/base/trackers.html b/exodus/web/templates/base/trackers.html index 3138e992..990d8671 100644 --- a/exodus/web/templates/base/trackers.html +++ b/exodus/web/templates/base/trackers.html @@ -2,6 +2,7 @@ {% load i18n %} {% load static %} {% block head %} + {% trans "Trackers" %} - εxodus {% endblock %} {% block content %} diff --git a/exodus/web/templates/base/understand.html b/exodus/web/templates/base/understand.html index b5f7d095..13728292 100644 --- a/exodus/web/templates/base/understand.html +++ b/exodus/web/templates/base/understand.html @@ -2,6 +2,7 @@ {% load i18n %} {% load static %} {% block head %} + {% trans "Better understand" %} - εxodus {% endblock %} {% block content %}