Converts HTML files with special attributes to Django templates.
pip install html-to-django
html_to_django [-h] [-r] path
path
can either be a path to a file or a folder. When a file is passed only the file itself will be converted. When a folder is passed, all files ending in .html will be replaced. This searches through the folder recursivley.
Use -r
to replace the original files, instead of creating new ones.
By default, new ones are created in place next to the existing files, with the extension .n.html
.
You can also use the html_to_django_r
command if you are unable to pass the -r
parameter
(e.g. with the Bootstrap Studio "Export Script" setting).
To add Django template tags to your HTML files, you need to add special attributes to your HTML tags like this:
<div dj-for="user in users">
<p>{{ user.name }}</p>
</div>
This will be converted to:
{% for user in users %}
<p>{{ user.name }}</p>
{% endfor %}
A complete list of supported attributes can be found here.
To learn how to contribute to this project, please see CONTRIBUTING.md.