I would like to know how I can use nested template tags, where the child template tag takes an argument, as shown below:
{% parent_tag {% child_tag arguments %} rest_of_parent_arguments %}
In the above line, I would like to use the return value of the child tag as an argument to the parent tag.
Tolga source share