How is it possible to extend "erlydtl"?
I really like django templates, and the way the template language can be extended. For example, I like the extensions such as "sekizai".
It is possible to have custom tag modules for erlydtl. But how do I add support for more complex tags such as provided by sekizai?
In django, using sekizai I can do following (taken from sekizai documentation).
{% render_block "css" %}
And add following to add to the above block
{% addtoblock "css" %}
<link href="/media/css/stylesheet.css" media="screen" rel="stylesheet" type="text/css" />
{% endaddtoblock %}
And this will add the contents at the place where {% render_block %} is called.