[Answer]-Django Template: Simple Variable in a Template

1👍

For example like this:

<header class="{% if a_flag %}something{% else %}somethingelse{% endif %}">
    <div>....</div>
</header>

where a_flag is a variable in the current context.

Leave a comment