
Base classes for quick-and-easy template tag development
jinja2-simple-tags is a library that provides a simple way to create custom templatetags in Jinja2 templates. It is compatible with Python versions 3.6 and above, as well Jinja2 version 2.10 and above.
jinja2-simple-tags is a library that simplifies the creation of custom templatetags in Jinja2 templates. It provides two tag types, StandaloneTag and ContainerTag, which can be used to create custom tags that either require or don't require a closing tag. The library also supports context access and assignment of tag output to variables.

Django is a high-level Python web framework that encourages rapid development and clean, pragmatic design. It follows the model-view-controller (MVC) architectural pattern, providing an extensive set of built-in tools and conventions to streamline the creation of robust and scalable web applications.