Hi
How many different block tags like these exist?
{% block %}
In other words if I have a parent template and child templates with multiple block tags. How does Django know where to insert if not by different block tag names?
Or can I customize like:
{% block_mytag_1 %}
Thanks
L