You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 17, 2023. It is now read-only.
Kangaroux
changed the title
Using a "with" statement does not close the tag properly
Using several "with" statements on the same block level does not render the closing tag at the correct spot
Nov 21, 2016
def test_django_tag_with(self):
# with tag
self._test('- with context\n %p hello\n- with other_context\n %p goodbye',
'{% with context %}\n <p>hello</p>\n{% endwith %}{% with other_context %}\n <p>goodbye</p>\n{% endwith %}')
Copying this from the old repo: jessemiller#170
Example:
Gets compiled to:
Should be:
The text was updated successfully, but these errors were encountered: