|
|
|
|
|
by SEJeff
3901 days ago
|
|
"""
Using jinja2 for markup compounded the issue in my opinion, as it has no loops and logic is less than obvious
""" This comment makes pretty much no sense at all. Example of a loop in jinja2: {% for item in ("one", "two", "three") %} item is {{ item }}
{% endfor %}The logic is pure python minus perhaps setting variables ie: {% set name = "dorfsmay" %} {% if name == "dorfsmay" or name.startswith("dorfs") %} You're spreading FUD about jinja2
{% endif %} |
|