Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Using a "with" statement does not close the tag properly #170

Open
Kangaroux opened this issue Nov 13, 2016 · 2 comments
Open

Using a "with" statement does not close the tag properly #170

Kangaroux opened this issue Nov 13, 2016 · 2 comments

Comments

@Kangaroux
Copy link

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 %}
@rowanseymour
Copy link

Hi @Kangaroux. If you can create this issue on https://github.com/nyaruka/django-hamlpy we'll try to get it fixed

@rowanseymour
Copy link

Nevermind I see you already did

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants