├── LICENSE ├── MANIFEST.in ├── README.rst ├── README.ua.rst ├── django_handlebars ├── __init__.py ├── appsettings.py ├── management │ ├── __init__.py │ ├── commands │ │ ├── __init__.py │ │ └── compilehandlebars.py │ ├── compiler.py │ └── observer │ │ ├── __init__.py │ │ ├── base.py │ │ └── inotify.py ├── models.py ├── static │ └── js │ │ └── handlebars │ │ ├── handlebars.django.js │ │ ├── handlebars.js │ │ └── handlebars.runtime.js ├── templatetags │ ├── __init__.py │ └── handlebars_tags.py ├── tests.py └── utils.py ├── runtests.py └── setup.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syavorsky/django-handlebars/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syavorsky/django-handlebars/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syavorsky/django-handlebars/HEAD/README.rst -------------------------------------------------------------------------------- /README.ua.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syavorsky/django-handlebars/HEAD/README.ua.rst -------------------------------------------------------------------------------- /django_handlebars/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syavorsky/django-handlebars/HEAD/django_handlebars/__init__.py -------------------------------------------------------------------------------- /django_handlebars/appsettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syavorsky/django-handlebars/HEAD/django_handlebars/appsettings.py -------------------------------------------------------------------------------- /django_handlebars/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_handlebars/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_handlebars/management/commands/compilehandlebars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syavorsky/django-handlebars/HEAD/django_handlebars/management/commands/compilehandlebars.py -------------------------------------------------------------------------------- /django_handlebars/management/compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syavorsky/django-handlebars/HEAD/django_handlebars/management/compiler.py -------------------------------------------------------------------------------- /django_handlebars/management/observer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syavorsky/django-handlebars/HEAD/django_handlebars/management/observer/__init__.py -------------------------------------------------------------------------------- /django_handlebars/management/observer/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syavorsky/django-handlebars/HEAD/django_handlebars/management/observer/base.py -------------------------------------------------------------------------------- /django_handlebars/management/observer/inotify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syavorsky/django-handlebars/HEAD/django_handlebars/management/observer/inotify.py -------------------------------------------------------------------------------- /django_handlebars/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_handlebars/static/js/handlebars/handlebars.django.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syavorsky/django-handlebars/HEAD/django_handlebars/static/js/handlebars/handlebars.django.js -------------------------------------------------------------------------------- /django_handlebars/static/js/handlebars/handlebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syavorsky/django-handlebars/HEAD/django_handlebars/static/js/handlebars/handlebars.js -------------------------------------------------------------------------------- /django_handlebars/static/js/handlebars/handlebars.runtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syavorsky/django-handlebars/HEAD/django_handlebars/static/js/handlebars/handlebars.runtime.js -------------------------------------------------------------------------------- /django_handlebars/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_handlebars/templatetags/handlebars_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syavorsky/django-handlebars/HEAD/django_handlebars/templatetags/handlebars_tags.py -------------------------------------------------------------------------------- /django_handlebars/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syavorsky/django-handlebars/HEAD/django_handlebars/tests.py -------------------------------------------------------------------------------- /django_handlebars/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syavorsky/django-handlebars/HEAD/django_handlebars/utils.py -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syavorsky/django-handlebars/HEAD/runtests.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syavorsky/django-handlebars/HEAD/setup.py --------------------------------------------------------------------------------