- Author:
- sachingupta006
- Posted:
- March 20, 2012
- Language:
- Python
- Version:
- 1.3
- Score:
- 0 (after 0 ratings)
This template tag allows you to increment a variable within a template. This avoids the need of having to use the add
filter and the syntax is quite intuitive.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | '''
usage
{% ++ <var_name> %}
For example
{% ++ a %}
'''
def increment_var(parser, token):
parts = token.split_contents()
if len(parts) < 2:
raise template.TemplateSyntaxError("'increment' tag must be of the form: {% increment <var_name> %}")
return IncrementVarNode(parts[1])
register.tag('++', increment_var)
class IncrementVarNode(template.Node):
def __init__(self, var_name):
self.var_name = var_name
def render(self,context):
try:
value = context[self.var_name]
context[self.var_name] = value + 1
return u""
except:
raise template.TemplateSyntaxError("The variable does not exist.")
|
More like this
- Template tag - list punctuation for a list of items by shapiromatron 10 months, 3 weeks ago
- JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 11 months ago
- Serializer factory with Django Rest Framework by julio 1 year, 5 months ago
- Image compression before saving the new model / work with JPG, PNG by Schleidens 1 year, 6 months ago
- Help text hyperlinks by sa2812 1 year, 7 months ago
Comments
It is working Nice..
#
Please login first before commenting.