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 29 | """
filename: angularjs.py
Usage:
{% ng Some.angular.scope.content %}
e.g.
{% load angularjs %}
<div ng-init="yourName = 'foobar'">
<p>{% ng yourName %}</p>
</div>
"""
from django import template
register = template.Library()
class AngularJS(template.Node):
def __init__(self, bits):
self.ng = bits
def render(self, ctx):
return "{{%s}}" % " ".join(self.ng[1:])
def do_angular(parser, token):
bits = token.split_contents()
return AngularJS(bits)
register.tag('ng', do_angular)
|
More like this
- Prettify HTML body contents in HTTP response by n1k0 2 years, 5 months ago
- FormWizard inside view with proper context handling and site templating support, without having to use urls.py by sleepycal 3 years, 5 months ago
- Complex Formsets, Redux by smagala 3 years, 2 months ago
- Tuned IPAddressField with IPv4 & IPv6 support using Postgres Network Field type by illsci 4 years, 1 month ago
- head inclusion middleware by bowdengm 4 years, 3 months ago
Comments