{ "info": { "author": "Mjumbe Wawatu Ukweli", "author_email": "mjumbewu@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Environment :: Web Environment", "Framework :: Django", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.2", "Programming Language :: Python :: 3.3" ], "description": "=================\ndjango-jstemplate\n=================\n\n.. image:: https://travis-ci.org/mjumbewu/django-jstemplate.png\n :alt: Build Status\n :target: https://travis-ci.org/mjumbewu/django-jstemplate\n.. image:: https://coveralls.io/repos/mjumbewu/django-jstemplate/badge.png?branch=master\n :alt: Coverage Status\n :target: https://coveralls.io/r/mjumbewu/django-jstemplate\n.. image:: https://pypip.in/v/django-jstemplate/badge.png\n :target: https://crate.io/packages/django-jstemplate/\n.. image:: https://pypip.in/d/django-jstemplate/badge.png\n :target: https://crate.io/packages/django-jstemplate/\n\nA templatetag framework for easier integration of `mustache.js`_, `dust.js`_,\n`handlebars.js`_, or other JavaScript templates with Django templates. Also will\nwrap your templates in elements expected for libraries such as `ICanHaz.js`_.\nDjango-jstemplates is extensible, so if your favorite template library is not\nincluded, it's easy to add. Inspired by `django-icanhaz`_.\n\n.. _mustache.js: http://mustache.github.com/\n.. _dust.js: http://akdubya.github.com/dustjs/\n.. _handlebars.js: http://handlebarsjs.com/\n.. _ICanHaz.js: http://icanhazjs.com/\n.. _django-icanhaz: http://github.com/carljm/django-icanhaz\n\nQuick Usage\n-----------\n\n(Read the full docs on `Read the Docs`_)\n\n.. _Read the Docs: http://django-jstemplate.readthedocs.org/en/latest/\n\nAdd ``\"jstemplate\"`` to your ``INSTALLED_APPS`` setting.\n\nDownload the templating library of your choice (I like to go straight\nmustache.js)::\n\n wget https://raw.github.com/janl/mustache.js/master/mustache.js\n mv mustache.js app/static/libs/\n\n``app/jstemplates/main.mustache``::\n\n
This is {{ name }}'s template
\n