summaryrefslogtreecommitdiff
path: root/public
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2013-03-27 10:10:08 -0400
committerLuke Shumaker <LukeShu@sbcglobal.net>2013-03-27 10:10:08 -0400
commitb4cf5bbafdda1b8f8fb4f51e6c961ffbbfe992d1 (patch)
treeeb8731a6c56a1c8766d5b6bc3e75ce90cc998db3 /public
parentdb0519771d3a3a977439f905c281274630e0f607 (diff)
Pull references to Arch Linux in code into BRANDING_ variables in settings
This does not include templates
Diffstat (limited to 'public')
-rw-r--r--public/views.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/public/views.py b/public/views.py
index 3ea8f841..c2c42f5a 100644
--- a/public/views.py
+++ b/public/views.py
@@ -26,15 +26,15 @@ def index(request):
USER_LISTS = {
'devs': {
'user_type': 'Developers',
- 'description': "This is a list of the current Arch Linux Developers. They maintain the [core] and [extra] package repositories in addition to doing any other developer duties.",
+ 'description': "This is a list of the current "+settings.BRANDING_DISTRONAME+" Developers. They maintain the [core] and [extra] package repositories in addition to doing any other developer duties.",
},
'tus': {
'user_type': 'Trusted Users',
- 'description': "Here are all your friendly Arch Linux Trusted Users who are in charge of the [community] repository.",
+ 'description': "Here are all your friendly "+settings.BRANDING_DISTRONAME+" Trusted Users who are in charge of the [community] repository.",
},
'fellows': {
'user_type': 'Fellows',
- 'description': "Below you can find a list of ex-developers (aka project fellows). These folks helped make Arch what it is today. Thanks!",
+ 'description': "Below you can find a list of ex-developers (aka project fellows). These folks helped make "+settings.BRANDING_SHORTNAME+" what it is today. Thanks!",
},
}