We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I have a template with an error, i.e. like bad.html:
bad.html
{% fail %}some output
When I include this file I get a proper error message:
{% include './bad.html' %} Template render error: (backend/src/views/test/include.html) Template render error: (backend/src/views/test/bad.html) [Line 1, Column 2] unknown block tag: fail
However when I include this file inside an {% if %} tag I get no error:
{% if %}
{% if true %} {% include './bad.html' %} {% endif %}
The included template just stops rendering at the point of failure, I see neither some output nor error message.
some output
The text was updated successfully, but these errors were encountered:
Merge pull request #634 from oyyd/fix-asyncif-err
02a69d5
fix #571, make asyncif handle error
b89a34e
No branches or pull requests
I have a template with an error, i.e. like
bad.html
:When I include this file I get a proper error message:
However when I include this file inside an
{% if %}
tag I get no error:The included template just stops rendering at the point of failure, I see neither
some output
nor error message.The text was updated successfully, but these errors were encountered: