diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2015-08-06 00:06:51 -0600 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2015-08-06 00:06:51 -0600 |
commit | 004317994057a974e36dab450f388005386bf209 (patch) | |
tree | a1ec58537152d28a783bcb349c151f4d1e336171 /public/views.py | |
parent | 4ec2197deab2f7df1cb94a6506fac9127b3ae414 (diff) | |
parent | d4731a373ca665d4547eb0e89cdf270d41c44243 (diff) |
Merge branch 'archweb-generic'
# Conflicts:
# public/tests.py
# templates/base.html
Diffstat (limited to 'public/views.py')
-rw-r--r-- | public/views.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/public/views.py b/public/views.py index af0c1ff6..1002c8c7 100644 --- a/public/views.py +++ b/public/views.py @@ -25,10 +25,12 @@ def index(request): else: def updates(): return get_recent_updates() + domain = "%s://%s" % (request.scheme, request.META.get('HTTP_HOST')) context = { 'news_updates': News.objects.order_by('-postdate', '-id')[:15], 'pkg_updates': updates, 'staff_groups': StaffGroup.objects.all(), + 'domain': domain, } return render(request, 'public/index.html', context) |