summaryrefslogtreecommitdiffstats
path: root/public
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2012-09-25 00:30:05 -0500
committerDan McGee <dan@archlinux.org>2012-09-25 00:30:05 -0500
commit3eed426027ed6bc87b58f82d48da06bea55b265f (patch)
treef73fbcc3c6fbc384df50b273b7104f586784c8cb /public
parenta1c4d831c92cbb32cb8c34f95b8cd5eb541cdf00 (diff)
downloadarchweb-3eed426027ed6bc87b58f82d48da06bea55b265f.tar.gz
archweb-3eed426027ed6bc87b58f82d48da06bea55b265f.zip
Add structured data to developer listing pages
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'public')
-rw-r--r--public/views.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/public/views.py b/public/views.py
index 312cb3b2..35315e0e 100644
--- a/public/views.py
+++ b/public/views.py
@@ -29,14 +29,17 @@ def index(request):
USER_LISTS = {
'devs': {
'user_type': 'Developers',
+ 'user_title': 'Developer',
'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.",
},
'tus': {
'user_type': 'Trusted Users',
+ 'user_title': 'Trusted User',
'description': "Here are all your friendly Arch Linux Trusted Users who are in charge of the [community] repository.",
},
'fellows': {
'user_type': 'Fellows',
+ 'user_title': 'Fellow',
'description': "Below you can find a list of ex-developers (aka project fellows). These folks helped make Arch what it is today. Thanks!",
},
}