Skip to content

Instantly share code, notes, and snippets.

@yangyubo
Created July 20, 2012 02:54
Show Gist options
  • Save yangyubo/3148381 to your computer and use it in GitHub Desktop.
Save yangyubo/3148381 to your computer and use it in GitHub Desktop.
Assignment tag
# django tempatetag
# usage: {% set <var_name> = <var_value> %}
class SetVarNode(template.Node):
def __init__(self, var_name, var_value):
self.var_name = var_name
self.var_value = var_value
def render(self, context):
try:
value = template.Variable(self.var_value).resolve(context)
except template.VariableDoesNotExist:
value = ""
context[self.var_name] = value
return u""
@register.tag('set')
def set_var(parser, token):
"""
{% set <var_name> = <var_value> %}
"""
parts = token.split_contents()
if len(parts) < 4:
raise template.TemplateSyntaxError("'set' tag must be of the form: {% set <var_name> = <var_value> %}")
return SetVarNode(parts[1], parts[3])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment