├── .gitignore ├── CHANGES ├── LICENSE ├── MANIFEST.in ├── README.rst ├── setup.py └── templatetag_handlebars ├── __init__.py ├── models.py ├── static └── handlebars.js ├── templatetags ├── __init__.py └── templatetag_handlebars.py └── tests.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | dist/ 3 | django_templatetag_handlebars.egg-info/ 4 | -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinacorpus/django-templatetag-handlebars/HEAD/CHANGES -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinacorpus/django-templatetag-handlebars/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinacorpus/django-templatetag-handlebars/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinacorpus/django-templatetag-handlebars/HEAD/README.rst -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinacorpus/django-templatetag-handlebars/HEAD/setup.py -------------------------------------------------------------------------------- /templatetag_handlebars/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templatetag_handlebars/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templatetag_handlebars/static/handlebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinacorpus/django-templatetag-handlebars/HEAD/templatetag_handlebars/static/handlebars.js -------------------------------------------------------------------------------- /templatetag_handlebars/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templatetag_handlebars/templatetags/templatetag_handlebars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinacorpus/django-templatetag-handlebars/HEAD/templatetag_handlebars/templatetags/templatetag_handlebars.py -------------------------------------------------------------------------------- /templatetag_handlebars/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makinacorpus/django-templatetag-handlebars/HEAD/templatetag_handlebars/tests.py --------------------------------------------------------------------------------