This project is a collection of useful templates & tags for the Django web framework. I made this mainly for my own projects where I noticed I was copying the same set of templates and template tags & filters over to each new project, but hopefully it will be useful for other people as well.
Django >= 2.2 and Python >= 3.6 are supported.
Documentation and examples will follow in the future. For now, to use this package in your
Django project install it with pip
then add it to your INSTALLED_APPS
list
in settings. You can then include the templates as {% include 'toolkit/forms/field.html' %}
(for example)
and the template tags with {% load toolkit %}
. For now see the source code for which
template tags & filters are available.