diff --git a/www/conservancy/static/views.py b/www/conservancy/static/views.py index 688d5dcb2efeeb1e1bc67b8e641f5cb576eef9a6..01d6ae341037c3e286fd43d4c7b27d918b50af68 100644 --- a/www/conservancy/static/views.py +++ b/www/conservancy/static/views.py @@ -45,10 +45,12 @@ def index(request, *args, **kwargs): return handler404(request) template = loader.get_template(path) + kwargs = kwargs.copy() if kwargs.has_key('fundraiser_sought'): - kwargs = kwargs.copy() kwargs['fundgoal'] = fundgoal_lookup(kwargs['fundraiser_sought']) + kwargs['sitefundgoal'] = fundgoal_lookup('supporterrun') + context = RequestContext(request, kwargs) return HttpResponse(template.render(context))