An extension to allow Django to use Handlebars templates through the pybars port of Handlebars.js
Project description
djangobars
An extension to allow Django to use Handlebars templates through the pybars port of Handlebars.js
Because don’t we all want to use the same templates on the client that we do on the server?
NOTE: This project is very early-stage. Try it out, leave feedback and wishes in the issues. And pull-requests welcome!
Installation
Install djangobars:
pip install djangobars
Add 'djangobars' to your installed applications.
Add a HANDLEBARS_LOADERS value to your settings module. You will probably want:
HANDLEBARS_LOADERS = ( 'djangobars.template.loaders.filesystem.Loader', 'djangobars.template.loaders.app_directories.Loader', )
(optional) Add a HANDLEBARS_DIRS and/or HANDLEBARS_APP_DIRNAMES value to your setting module. By default, djangobars will search in your TEMPLATE_DIRS folder, but you can use the HANDLEBARS_DIRS value to override this behavior. For example, if you want to use both Django templates and Handlebars templates, you may want to keep the two in separate directories.
Usage
Use pretty much just as you would Django’s own built-in templates. Instead of:
from django.shortcuts import render def my_view(request): # View code here... return render(request, 'myapp/index.html', {"foo": "bar"}, content_type="application/xhtml+xml")
do this:
from djangobars.shortcuts import render def my_view(request): # View code here... return render(request, 'myapp/handlebar_index.html', {"foo": "bar"}, content_type="application/xhtml+xml")
And instead of:
from django.views.generic import TemplateView class MyView (TemplateView): template_name = 'myapp/index.html'
do this:
from django.views.generic import TemplateView from djangobars.response import HandlebarsResponse class MyView (TemplateView): template_name = 'myapp/handlebar_index.html' response_class = HandlebarsResponse
0.2.0
Update the installation instructions.
0.2.0
New dependencies on pymeta3 and pybars3.
Include partials of other templates in the project.
0.1.5
Allow arbitrary objects as context for templates.
0.1.4
Fix a bug in the app directories template loader where the path names were calling decode in Python 2 and 3.
0.1.3
Change the installation details
Pip 1.5 makes it difficult to specify installation sources outside of the PyPI. Also, this is better motivation to get these packages officially on PyPI.
0.1.2
Depend on specific forks of pymeta and pybars
0.1.1
First Release
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file djangobars-0.2.1.tar.gz
.
File metadata
- Download URL: djangobars-0.2.1.tar.gz
- Upload date:
- Size: 7.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 66034b5a0b4eb8af8daae9128d6faaa18f9b06353dc0c7c96778124edd0cc8c3 |
|
MD5 | 7156dc16bf9b01e2be2f1af62b14b007 |
|
BLAKE2b-256 | ed281a79c549290f61be5349d826787c03ba9718470d6876017691e21752200f |