blog
How to Add Template Tags to Django
Template tags are the tags you see in this format {% some_tag %} which allow you to insert dynamic content, logic, or other functionality. The cool thing about Django is you can actually create your own tags when the built-in tags aren't enough. How to Create Your Own The