Skip to content

Instantly share code, notes, and snippets.

@czue
Created October 8, 2010 14:19
Show Gist options
  • Save czue/616870 to your computer and use it in GitHub Desktop.
Save czue/616870 to your computer and use it in GitHub Desktop.
from django import template, get_version
register = template.Library()
if get_version() < '1.2':
@register.simple_tag
def csrf_token():
return ""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment