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
Following code will not work because the loop variable scope.
{% set dte = "-" %} {% for blog in blogs %} {% if (blog.created_at | date("%b %Y")) != dte %} <h2>{{ blog.created_at | date("%b %Y") }}</h2> {% set dte = blog.created_at | date("%b %Y") %} {% endif %} <p>{{ blog.title }}</p> {% endfor %}
Jinja 2 provides namespace using that this use case will work (Ref: https://jinja.palletsprojects.com/en/3.0.x/templates/#assignments)
namespace
This feature was introduced in Jinja version 2.10
{% set ns = namespace(dte="-") %} {% for blog in blogs %} {% if (blog.created_at | date("%b %Y")) != ns.dte %} <h2>{{ blog.created_at | date("%b %Y") }}</h2> {% set ns.dte = blog.created_at | date("%b %Y") %} {% endif %} <p>{{ blog.title }}</p> {% endfor %}
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Following code will not work because the loop variable scope.
Jinja 2 provides
namespace
using that this use case will work (Ref: https://jinja.palletsprojects.com/en/3.0.x/templates/#assignments)This feature was introduced in Jinja version 2.10
The text was updated successfully, but these errors were encountered: