From 63caf646fa72121852eeb4944b6b9ce606665ba0 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Wed, 27 Mar 2013 10:27:16 -0400 Subject: find templates -type f -exec sed -i 's/\({% block title %}\)Arch Linux/\1{{ BRANDING_DISTRONAME }}/' {} + --- templates/404.html | 2 +- templates/base.html | 2 +- templates/devel/clock.html | 2 +- templates/devel/index.html | 2 +- templates/devel/packages.html | 2 +- templates/devel/profile.html | 2 +- templates/general_form.html | 2 +- templates/mirrors/mirror_details.html | 2 +- templates/mirrors/mirrorlist_generate.html | 2 +- templates/mirrors/mirrors.html | 2 +- templates/mirrors/status.html | 2 +- templates/news/add.html | 2 +- templates/news/delete.html | 2 +- templates/news/list.html | 2 +- templates/news/view.html | 2 +- templates/packages/details.html | 2 +- templates/packages/differences.html | 2 +- templates/packages/files.html | 2 +- templates/packages/flag.html | 2 +- templates/packages/flag_confirmed.html | 2 +- templates/packages/flagged.html | 2 +- templates/packages/groups.html | 2 +- templates/packages/packages_list.html | 2 +- templates/packages/search.html | 2 +- templates/packages/signoff_options.html | 2 +- templates/packages/signoffs.html | 2 +- templates/packages/stale_relations.html | 2 +- templates/public/about.html | 2 +- templates/public/art.html | 2 +- templates/public/blank.html | 2 +- templates/public/donate.html | 2 +- templates/public/download.html | 2 +- templates/public/feeds.html | 2 +- templates/public/keys.html | 2 +- templates/public/svn.html | 2 +- templates/public/userlist.html | 2 +- templates/registration/login.html | 2 +- templates/registration/logout.html | 2 +- templates/releng/add.html | 2 +- templates/releng/results.html | 2 +- templates/releng/thanks.html | 2 +- templates/todolists/list.html | 2 +- templates/todolists/public_list.html | 2 +- templates/todolists/todolist_confirm_delete.html | 2 +- templates/todolists/view.html | 2 +- templates/visualize/index.html | 2 +- 46 files changed, 46 insertions(+), 46 deletions(-) diff --git a/templates/404.html b/templates/404.html index 33271c66..7a667bac 100644 --- a/templates/404.html +++ b/templates/404.html @@ -1,5 +1,5 @@ {% extends "base.html" %} -{% block title %}Arch Linux - Page Not Found{% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - Page Not Found{% endblock %} {% block content %}
diff --git a/templates/base.html b/templates/base.html index b8a5be46..fd146460 100644 --- a/templates/base.html +++ b/templates/base.html @@ -1,7 +1,7 @@ {% load url from future %}{% load static from staticfiles %} - {% block title %}Arch Linux{% endblock %} + {% block title %}{{ BRANDING_DISTRONAME }}{% endblock %} diff --git a/templates/devel/clock.html b/templates/devel/clock.html index 61e67c32..409ba24c 100644 --- a/templates/devel/clock.html +++ b/templates/devel/clock.html @@ -2,7 +2,7 @@ {% load static from staticfiles %} {% load tz %} -{% block title %}Arch Linux - Developer World Clocks{% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - Developer World Clocks{% endblock %} {% block content %}
diff --git a/templates/devel/index.html b/templates/devel/index.html index a0ccb91f..a7ffe0e2 100644 --- a/templates/devel/index.html +++ b/templates/devel/index.html @@ -3,7 +3,7 @@ {% load cache %} {% load package_extras %} -{% block title %}Arch Linux - Developer Dashboard{% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - Developer Dashboard{% endblock %} {% block content %}
diff --git a/templates/devel/packages.html b/templates/devel/packages.html index 6b9df214..77146891 100644 --- a/templates/devel/packages.html +++ b/templates/devel/packages.html @@ -3,7 +3,7 @@ {% load attributes %} {% load package_extras %} -{% block title %}Arch Linux - {{ title }}{% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - {{ title }}{% endblock %} {% block content %}
diff --git a/templates/devel/profile.html b/templates/devel/profile.html index b6580ab8..54a3771c 100644 --- a/templates/devel/profile.html +++ b/templates/devel/profile.html @@ -1,5 +1,5 @@ {% extends "base.html" %} -{% block title %}Arch Linux - Edit Profile{% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - Edit Profile{% endblock %} {% block content %}
diff --git a/templates/general_form.html b/templates/general_form.html index 1fa33513..c6d6cb1c 100644 --- a/templates/general_form.html +++ b/templates/general_form.html @@ -1,5 +1,5 @@ {% extends "base.html" %} -{% block title %}Arch Linux - {{title}}{% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - {{title}}{% endblock %} {% block content %}
diff --git a/templates/mirrors/mirror_details.html b/templates/mirrors/mirror_details.html index edeab5dc..76ab3d5b 100644 --- a/templates/mirrors/mirror_details.html +++ b/templates/mirrors/mirror_details.html @@ -2,7 +2,7 @@ {% load static from staticfiles %} {% load mirror_status %} -{% block title %}Arch Linux - {{ mirror.name }} - Mirror Details{% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - {{ mirror.name }} - Mirror Details{% endblock %} {% block content %} diff --git a/templates/mirrors/mirrorlist_generate.html b/templates/mirrors/mirrorlist_generate.html index e6f5e28c..b5fcd329 100644 --- a/templates/mirrors/mirrorlist_generate.html +++ b/templates/mirrors/mirrorlist_generate.html @@ -1,6 +1,6 @@ {% extends "base.html" %} {% load package_extras %} -{% block title %}Arch Linux - Pacman Mirrorlist Generator{% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - Pacman Mirrorlist Generator{% endblock %} {% block content %}
diff --git a/templates/mirrors/mirrors.html b/templates/mirrors/mirrors.html index 77c9ec33..aea458d8 100644 --- a/templates/mirrors/mirrors.html +++ b/templates/mirrors/mirrors.html @@ -1,6 +1,6 @@ {% extends "base.html" %} {% load static from staticfiles %} -{% block title %}Arch Linux - Mirror Overview{% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - Mirror Overview{% endblock %} {% block content %}
diff --git a/templates/mirrors/status.html b/templates/mirrors/status.html index 8ee1d46e..a32e6e37 100644 --- a/templates/mirrors/status.html +++ b/templates/mirrors/status.html @@ -2,7 +2,7 @@ {% load static from staticfiles %} {% load mirror_status %} -{% block title %}Arch Linux - Mirror Status{% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - Mirror Status{% endblock %} {% block content %}
diff --git a/templates/news/add.html b/templates/news/add.html index 51094659..a09366dc 100644 --- a/templates/news/add.html +++ b/templates/news/add.html @@ -1,6 +1,6 @@ {% extends "base.html" %} {% load static from staticfiles %} -{% block title %}Arch Linux - News: {% if form.instance.id %}Edit{% else %}Add{% endif %} Article{% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - News: {% if form.instance.id %}Edit{% else %}Add{% endif %} Article{% endblock %} {% block content %}
diff --git a/templates/news/delete.html b/templates/news/delete.html index 191c6929..d8f71bd5 100644 --- a/templates/news/delete.html +++ b/templates/news/delete.html @@ -1,5 +1,5 @@ {% extends "base.html" %} -{% block title %}Arch Linux - Delete News{% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - Delete News{% endblock %} {% block content %}
diff --git a/templates/news/list.html b/templates/news/list.html index a72a2dda..98cf9a73 100644 --- a/templates/news/list.html +++ b/templates/news/list.html @@ -1,5 +1,5 @@ {% extends "base.html" %} -{% block title %}Arch Linux - News{% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - News{% endblock %} {% block content %}
diff --git a/templates/news/view.html b/templates/news/view.html index 7788dece..47830867 100644 --- a/templates/news/view.html +++ b/templates/news/view.html @@ -1,6 +1,6 @@ {% extends "base.html" %} {% load markup %} -{% block title %}Arch Linux - News: {{ news.title }}{% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - News: {{ news.title }}{% endblock %} {% block content %}
diff --git a/templates/packages/details.html b/templates/packages/details.html index 4ab55ef2..e4ae0781 100644 --- a/templates/packages/details.html +++ b/templates/packages/details.html @@ -3,7 +3,7 @@ {% load package_extras %} {% load pgp %} -{% block title %}Arch Linux - {{ pkg.pkgname }} {{ pkg.full_version }} ({{ pkg.arch.name }}){% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - {{ pkg.pkgname }} {{ pkg.full_version }} ({{ pkg.arch.name }}){% endblock %} {% block navbarclass %}anb-packages{% endblock %} {% load package_extras %} diff --git a/templates/packages/differences.html b/templates/packages/differences.html index 01e1f857..4463f63d 100644 --- a/templates/packages/differences.html +++ b/templates/packages/differences.html @@ -1,7 +1,7 @@ {% extends "base.html" %} {% load static from staticfiles %} -{% block title %}Arch Linux - Package Differences Reports{% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - Package Differences Reports{% endblock %} {% block navbarclass %}anb-packages{% endblock %} {% block content %} diff --git a/templates/packages/files.html b/templates/packages/files.html index ba3fba25..652dc133 100644 --- a/templates/packages/files.html +++ b/templates/packages/files.html @@ -1,5 +1,5 @@ {% extends "base.html" %} -{% block title %}Arch Linux - {{ pkg.pkgname }} {{ pkg.full_version }} ({{ pkg.arch.name }}) - File List{% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - {{ pkg.pkgname }} {{ pkg.full_version }} ({{ pkg.arch.name }}) - File List{% endblock %} {% block navbarclass %}anb-packages{% endblock %} {% block content %} diff --git a/templates/packages/flag.html b/templates/packages/flag.html index d1226295..bfca2a65 100644 --- a/templates/packages/flag.html +++ b/templates/packages/flag.html @@ -1,7 +1,7 @@ {% extends "base.html" %} {% load package_extras %} -{% block title %}Arch Linux - Flag Package - {{ package.pkgname }} {{ package.full_version }} ({{ package.arch.name }}){% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - Flag Package - {{ package.pkgname }} {{ package.full_version }} ({{ package.arch.name }}){% endblock %} {% block head %}{% endblock %} {% block navbarclass %}anb-packages{% endblock %} diff --git a/templates/packages/flag_confirmed.html b/templates/packages/flag_confirmed.html index 6274adbb..a4c4db2a 100644 --- a/templates/packages/flag_confirmed.html +++ b/templates/packages/flag_confirmed.html @@ -1,7 +1,7 @@ {% extends "base.html" %} {% load package_extras %} -{% block title %}Arch Linux - Package Flagged - {{ package.pkgname }} {{ package.full_version }} ({{ package.arch.name }}){% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - Package Flagged - {{ package.pkgname }} {{ package.full_version }} ({{ package.arch.name }}){% endblock %} {% block head %}{% endblock %} {% block navbarclass %}anb-packages{% endblock %} diff --git a/templates/packages/flagged.html b/templates/packages/flagged.html index bbe0fad5..4b12ca8f 100644 --- a/templates/packages/flagged.html +++ b/templates/packages/flagged.html @@ -1,7 +1,7 @@ {% extends "base.html" %} {% load package_extras %} -{% block title %}Arch Linux - Flag Package - {{ pkg.pkgname }} {{ pkg.full_version }} ({{ pkg.arch.name }}){% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - Flag Package - {{ pkg.pkgname }} {{ pkg.full_version }} ({{ pkg.arch.name }}){% endblock %} {% block head %}{% endblock %} {% block navbarclass %}anb-packages{% endblock %} diff --git a/templates/packages/groups.html b/templates/packages/groups.html index 2786244d..7212c128 100644 --- a/templates/packages/groups.html +++ b/templates/packages/groups.html @@ -1,7 +1,7 @@ {% extends "base.html" %} {% load static from staticfiles %} -{% block title %}Arch Linux - Package Groups{% if arch %} - {{ arch }}{% endif %}{% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - Package Groups{% if arch %} - {{ arch }}{% endif %}{% endblock %} {% block navbarclass %}anb-packages{% endblock %} {% block content %} diff --git a/templates/packages/packages_list.html b/templates/packages/packages_list.html index ee2d2087..a7907f25 100644 --- a/templates/packages/packages_list.html +++ b/templates/packages/packages_list.html @@ -2,7 +2,7 @@ {% load static from staticfiles %} {% load package_extras %} -{% block title %}Arch Linux - {{ name }} ({{ arch.name }}) - {{ list_title }}{% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - {{ name }} ({{ arch.name }}) - {{ list_title }}{% endblock %} {% block navbarclass %}anb-packages{% endblock %} {% block content %} diff --git a/templates/packages/search.html b/templates/packages/search.html index ebd4e6c4..71a57072 100644 --- a/templates/packages/search.html +++ b/templates/packages/search.html @@ -2,7 +2,7 @@ {% load package_extras %} {% load admin_static %} -{% block title %}Arch Linux - Package Database{% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - Package Database{% endblock %} {% block navbarclass %}anb-packages{% endblock %} {% block head %} diff --git a/templates/packages/signoff_options.html b/templates/packages/signoff_options.html index ee9b8b47..40b7cac7 100644 --- a/templates/packages/signoff_options.html +++ b/templates/packages/signoff_options.html @@ -1,6 +1,6 @@ {% extends "base.html" %} -{% block title %}Arch Linux - Package Signoff Options - {{ package.pkgbase }} {{ package.full_version }} ({{ package.arch.name }}){% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - Package Signoff Options - {{ package.pkgbase }} {{ package.full_version }} ({{ package.arch.name }}){% endblock %} {% block head %}{% endblock %} {% block navbarclass %}anb-packages{% endblock %} diff --git a/templates/packages/signoffs.html b/templates/packages/signoffs.html index b20483c0..06298249 100644 --- a/templates/packages/signoffs.html +++ b/templates/packages/signoffs.html @@ -2,7 +2,7 @@ {% load static from staticfiles %} {% load package_extras %} -{% block title %}Arch Linux - Package Signoffs{% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - Package Signoffs{% endblock %} {% block navbarclass %}anb-packages{% endblock %} {% block content %} diff --git a/templates/packages/stale_relations.html b/templates/packages/stale_relations.html index df469e78..326f7a2b 100644 --- a/templates/packages/stale_relations.html +++ b/templates/packages/stale_relations.html @@ -1,7 +1,7 @@ {% extends "base.html" %} {% load static from staticfiles %} -{% block title %}Arch Linux - Stale Package Relations{% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - Stale Package Relations{% endblock %} {% block navbarclass %}anb-packages{% endblock %} {% block content %} diff --git a/templates/public/about.html b/templates/public/about.html index bf38e8a1..f5751d42 100644 --- a/templates/public/about.html +++ b/templates/public/about.html @@ -1,5 +1,5 @@ {% extends "base.html" %} -{% block title %}Arch Linux - About{% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - About{% endblock %} {% block content %}

About Arch Linux

diff --git a/templates/public/art.html b/templates/public/art.html index 96312971..1ced35e7 100644 --- a/templates/public/art.html +++ b/templates/public/art.html @@ -1,7 +1,7 @@ {% extends "base.html" %} {% load static from staticfiles %} -{% block title %}Arch Linux - Artwork{% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - Artwork{% endblock %} {% block content %}
diff --git a/templates/public/blank.html b/templates/public/blank.html index 2a8c83f4..3bf2cb2b 100644 --- a/templates/public/blank.html +++ b/templates/public/blank.html @@ -1,5 +1,5 @@ {% extends "base.html" %} -{% block title %}Arch Linux - Sample Page Title{% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - Sample Page Title{% endblock %} {% block content %}
diff --git a/templates/public/donate.html b/templates/public/donate.html index 3b3ee108..0c20e289 100644 --- a/templates/public/donate.html +++ b/templates/public/donate.html @@ -2,7 +2,7 @@ {% load cache %} {% load static from staticfiles %} -{% block title %}Arch Linux - Donate{% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - Donate{% endblock %} {% block content %} {% cache 600 donations secure %} diff --git a/templates/public/download.html b/templates/public/download.html index f57e565a..614a4100 100644 --- a/templates/public/download.html +++ b/templates/public/download.html @@ -3,7 +3,7 @@ {% load url from future %} {% load static from staticfiles %} -{% block title %}Arch Linux - Downloads{% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - Downloads{% endblock %} {% block navbarclass %}anb-download{% endblock %} {% block content %} diff --git a/templates/public/feeds.html b/templates/public/feeds.html index 0f80e1c2..9f62c4b7 100644 --- a/templates/public/feeds.html +++ b/templates/public/feeds.html @@ -1,5 +1,5 @@ {% extends "base.html" %} -{% block title %}Arch Linux - RSS Feeds{% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - RSS Feeds{% endblock %} {% block content %}
diff --git a/templates/public/keys.html b/templates/public/keys.html index 05524c48..1a21827a 100644 --- a/templates/public/keys.html +++ b/templates/public/keys.html @@ -2,7 +2,7 @@ {% load static from staticfiles %} {% load pgp %} -{% block title %}Arch Linux - Master Signing Keys{% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - Master Signing Keys{% endblock %} {% block content %}
diff --git a/templates/public/svn.html b/templates/public/svn.html index 0d067098..38e20ec9 100644 --- a/templates/public/svn.html +++ b/templates/public/svn.html @@ -1,5 +1,5 @@ {% extends "base.html" %} -{% block title %}Arch Linux - SVN{% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - SVN{% endblock %} {% block content %}

SVN Repositories

diff --git a/templates/public/userlist.html b/templates/public/userlist.html index 0077f611..66c63400 100644 --- a/templates/public/userlist.html +++ b/templates/public/userlist.html @@ -1,7 +1,7 @@ {% extends "base.html" %} {% load cache %} -{% block title %}Arch Linux - {{ user_type }}{% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - {{ user_type }}{% endblock %} {% block content %} {% cache 600 dev-tu-profiles user_type %} diff --git a/templates/registration/login.html b/templates/registration/login.html index ad1ac1ea..783070be 100644 --- a/templates/registration/login.html +++ b/templates/registration/login.html @@ -1,5 +1,5 @@ {% extends "base.html" %} -{% block title %}Arch Linux - Developer Login{% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - Developer Login{% endblock %} {% block content %}
diff --git a/templates/registration/logout.html b/templates/registration/logout.html index 50b3574b..71daa2e8 100644 --- a/templates/registration/logout.html +++ b/templates/registration/logout.html @@ -1,5 +1,5 @@ {% extends "base.html" %} -{% block title %}Arch Linux - Logout successful{% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - Logout successful{% endblock %} {% block content %}
diff --git a/templates/releng/add.html b/templates/releng/add.html index ed02984e..29587cb9 100644 --- a/templates/releng/add.html +++ b/templates/releng/add.html @@ -1,7 +1,7 @@ {% extends "base.html" %} {% load url from future %} -{% block title %}Arch Linux - Test Result Entry{% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - Test Result Entry{% endblock %} {% block content %}
diff --git a/templates/releng/results.html b/templates/releng/results.html index c19b42a6..82073ffe 100644 --- a/templates/releng/results.html +++ b/templates/releng/results.html @@ -1,7 +1,7 @@ {% extends "base.html" %} {% load url from future %} -{% block title %}Arch Linux - Release Engineering Testbuild Results{% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - Release Engineering Testbuild Results{% endblock %} {% block content %}
diff --git a/templates/releng/thanks.html b/templates/releng/thanks.html index 66d65a5c..1ad7260d 100644 --- a/templates/releng/thanks.html +++ b/templates/releng/thanks.html @@ -1,7 +1,7 @@ {% extends "base.html" %} {% load url from future %} -{% block title %}Arch Linux - Feedback - Thanks!{% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - Feedback - Thanks!{% endblock %} {% block content %}
diff --git a/templates/todolists/list.html b/templates/todolists/list.html index 88df4c81..36e0eac7 100644 --- a/templates/todolists/list.html +++ b/templates/todolists/list.html @@ -1,7 +1,7 @@ {% extends "base.html" %} {% load static from staticfiles %} -{% block title %}Arch Linux - Todo Lists{% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - Todo Lists{% endblock %} {% block content %}
diff --git a/templates/todolists/public_list.html b/templates/todolists/public_list.html index c3142da3..09251a17 100644 --- a/templates/todolists/public_list.html +++ b/templates/todolists/public_list.html @@ -2,7 +2,7 @@ {% load static from staticfiles %} {% load package_extras %} -{% block title %}Arch Linux - Todo Lists{% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - Todo Lists{% endblock %} {% block content %}
diff --git a/templates/todolists/todolist_confirm_delete.html b/templates/todolists/todolist_confirm_delete.html index 5545462f..6d7ec0ab 100644 --- a/templates/todolists/todolist_confirm_delete.html +++ b/templates/todolists/todolist_confirm_delete.html @@ -1,5 +1,5 @@ {% extends "base.html" %} -{% block title %}Arch Linux - Delete Todo List: {{object.name}}{% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - Delete Todo List: {{object.name}}{% endblock %} {% block content %}
diff --git a/templates/todolists/view.html b/templates/todolists/view.html index 02bbfd4f..e53ead82 100644 --- a/templates/todolists/view.html +++ b/templates/todolists/view.html @@ -2,7 +2,7 @@ {% load static from staticfiles %} {% load package_extras %} -{% block title %}Arch Linux - Todo: {{ list.name }}{% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - Todo: {{ list.name }}{% endblock %} {% block content %}
diff --git a/templates/visualize/index.html b/templates/visualize/index.html index 95cf6c1c..617bf8d1 100644 --- a/templates/visualize/index.html +++ b/templates/visualize/index.html @@ -2,7 +2,7 @@ {% load static from staticfiles %} {% load url from future %} -{% block title %}Arch Linux - Visualizations{% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - Visualizations{% endblock %} {% block content %}
-- cgit v1.2.3