Skip to content
 
 

Repository files navigation

django-tinycontent is a simple Django application for re-usable content blocks, much like django-boxes.

This is a fork under active maintenance, picking up where the original project left off.

Installation is simple:

pip install django-tinycontent

Add tinycontent to your INSTALLED_APPS.

Usage in templates is simple:

{% load tinycontent_tags %}

{% tinycontent_simple 'content_name' %}

Or, to specify a value if a content block by the given name cannot be found, use:

{% load tinycontent_tags %}

{% tinycontent 'content_name' %}
This will be shown if no matching object is found.
{% endtinycontent %}

The name of the content block can also be a context variable, using both the simple and the complex variants.

Content blocks themselves can be added and edited using Django's admin interface. If a block with the name given in the template tag cannot be found, either nothing is rendered (if using tinycontent_simple), or the text between tinycontent and endtinycontent is rendered (if using the more complex variant).

To apply custom filters to your content, set TINYCONTENT_FILTER to a dotted path to a callable that takes the raw content and returns the transformed content. You can also set TINYCONTENT_FILTER to be a list of dotted paths to callables, to chain filters together.

django-tinycontent supports Django 5.2 and above. Python 3.10, 3.11, 3.12 and 3.13 are supported.

About

A Django app for managing re-usable blocks of tiny content.

Resources

Stars

Watchers

Forks

Releases

Packages

Contributors

Languages