Repository URL to install this package:
|
Version:
0.4.4 ▾
|
def homepage(request):
from django.shortcuts import render_to_response
from django.conf import settings
try:
bundle = settings.BUNDLE
except AttributeError:
bundle = not settings.DEBUG
return render_to_response('index.html', {'BUNDLE': bundle})