diff options
Diffstat (limited to 'templates/releng')
-rw-r--r-- | templates/releng/add.html | 6 | ||||
-rw-r--r-- | templates/releng/release_detail.html | 2 | ||||
-rw-r--r-- | templates/releng/release_list.html | 4 | ||||
-rw-r--r-- | templates/releng/results.html | 5 | ||||
-rw-r--r-- | templates/releng/thanks.html | 2 |
5 files changed, 10 insertions, 9 deletions
diff --git a/templates/releng/add.html b/templates/releng/add.html index d060395d..80afda80 100644 --- a/templates/releng/add.html +++ b/templates/releng/add.html @@ -1,12 +1,12 @@ {% extends "base.html" %} -{% block title %}Arch Linux - Test Result Entry{% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - Test Result Entry{% endblock %} {% block content %} <div class="box"> - <h2>Arch Releng Testbuild Feedback Entry</h2> + <h2>{{ BRANDING_SHORTNAME }} Releng Testbuild Feedback Entry</h2> - <p>This page allows you to submit feedback after testing an Arch Linux installation + <p>This page allows you to submit feedback after testing an {{ BRANDING_SHORTNAME }} installation using a release engineering testbuild. Mark all the options you used during the installation; at the end you can specify whether everything went OK. Be sure to only denote a successful install after having checked the diff --git a/templates/releng/release_detail.html b/templates/releng/release_detail.html index 11155c0c..97017600 100644 --- a/templates/releng/release_detail.html +++ b/templates/releng/release_detail.html @@ -1,7 +1,7 @@ {% extends "base.html" %} {% load static %} -{% block title %}Arch Linux - Release: {{ release.version }}{% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - Release: {{ release.version }}{% endblock %} {% block content %} <div class="release box"> diff --git a/templates/releng/release_list.html b/templates/releng/release_list.html index fa15bcb9..3f442d07 100644 --- a/templates/releng/release_list.html +++ b/templates/releng/release_list.html @@ -2,10 +2,10 @@ {% load cycle from future %} {% load static from staticfiles %} -{% block title %}Arch Linux - Releases{% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - Releases{% endblock %} {% block head %} -<link rel="alternate" type="application/rss+xml" title="Arch Linux News Updates" href="/feeds/releases/" /> +<link rel="alternate" type="application/rss+xml" title="{{BRANDING_DISTRONAME}} News Updates" href="/feeds/releases/" /> {% endblock %} {% block content %} diff --git a/templates/releng/results.html b/templates/releng/results.html index 59d8351d..71a31fef 100644 --- a/templates/releng/results.html +++ b/templates/releng/results.html @@ -1,6 +1,7 @@ {% extends "base.html" %} +{% load wiki %} -{% block title %}Arch Linux - Release Engineering Testbuild Results{% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - Release Engineering Testbuild Results{% endblock %} {% block content %} <div class="box"> @@ -17,7 +18,7 @@ the <a href="{% url 'releng-iso-overview' %}">overview</a>.</p> <p>For more information, see the <a - href="https://wiki.archlinux.org/index.php/DeveloperWiki:releng_testimages_feedback">documentation + href="{% wiki_url 'DeveloperWiki:releng_testimages_feedback' %}">documentation on the wiki</a>.</p> <p>All ISOs referenced on this page are available from diff --git a/templates/releng/thanks.html b/templates/releng/thanks.html index 2462dafd..b772fad3 100644 --- a/templates/releng/thanks.html +++ b/templates/releng/thanks.html @@ -1,6 +1,6 @@ {% extends "base.html" %} -{% block title %}Arch Linux - Feedback - Thanks!{% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - Feedback - Thanks!{% endblock %} {% block content %} <div class="box"> |