Files @ 1e396f77a392
Branch filter:

Location: website/www/wsgicustom.wsgi

bkuhn
More extra_context stuff? Put it all in there!

Simply move the blog_entries field into extra_context and pass the whole
darn thing along to the template.
# wsgicustom.py

import os
import sys

sys.path = ['/var/www'] + sys.path
os.environ['DJANGO_SETTINGS_MODULE'] = 'conservancy.settings'

from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()