flask if statement

Solutions on MaxInterview for flask if statement by the best coders in the world

showing results for - "flask if statement"
Ariadna
20 Jun 2016
1{% extends "base.html" %}
2{% block content %}
3    {% if condition %}
4        <div>blah blah blah blah</div>
5    {% else %}
6        {{ super() }}
7    {% endif %}
8{% endblock content %}
9