Create a blog application with django, part 11: create django custom template tags and filters

Django provides the following helper functions that allow you to create your own template tags in an easy way:

simple_tag: Processes the data and returns a string

inclusion_tag: Processes the data and returns a rendered template

Go to blog