HamlPy
HamlPy copied to clipboard
Using a "with" statement does not close the tag properly
Example:
- with some_context
...
- with some_other_context
...
Gets compiled to:
{% with some_context %}
...
{% with some_other_context %}
...
{% endwith %}
{% endwith %}
Should be:
{% with some_context %}
...
{% endwith %}
{% with some_other_context %}
...
{% endwith %}
Hi @Kangaroux. If you can create this issue on https://github.com/nyaruka/django-hamlpy we'll try to get it fixed
Nevermind I see you already did