Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:

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})