summaryrefslogtreecommitdiff
path: root/main
diff options
context:
space:
mode:
Diffstat (limited to 'main')
-rw-r--r--main/context_processors.py1
-rw-r--r--main/templatetags/wiki.py9
2 files changed, 10 insertions, 0 deletions
diff --git a/main/context_processors.py b/main/context_processors.py
index 850bb499..5ac31744 100644
--- a/main/context_processors.py
+++ b/main/context_processors.py
@@ -7,6 +7,7 @@ def branding(request):
'BRANDING_APPNAME': settings.BRANDING_APPNAME,
'BRANDING_DISTRONAME': settings.BRANDING_DISTRONAME,
'BRANDING_SHORTNAME': settings.BRANDING_SHORTNAME,
+ 'BRANDING_WIKINAME': settings.BRANDING_WIKINAME,
'BRANDING_EMAIL': settings.BRANDING_EMAIL,
}
diff --git a/main/templatetags/wiki.py b/main/templatetags/wiki.py
new file mode 100644
index 00000000..b1b8dd55
--- /dev/null
+++ b/main/templatetags/wiki.py
@@ -0,0 +1,9 @@
+from django import template
+register = template.Library()
+
+@register.simple_tag
+def wiki_url(article=""):
+ if article == "":
+ return "https://wiki.archlinux.org/"
+ else:
+ return "https://wiki.archlinux.org/index.php/"+article.replace(' ', '_')