Files @ d28ffd68ca45
Branch filter:

Location: website/www/conservancy/__init__.py - annotation

brett
supporter: HTML5 improvements to form.

* Use "number" type for a better prompt.
* Use new standard "min" attribute for richer validation.
1
2
3
4
5
6
from django.shortcuts import render_to_response
from django.template import RequestContext

def render_template_with_context(request, template_path, context_dict):
    return render_to_response(template_path, context_dict,
                              context_instance=RequestContext(request))