xxxxxxxxxx
{% if 'priority' in data %}
<p>Priority: {{ data['priority'] }}</p>
{% endif %}
xxxxxxxxxx
{% if something_random == 15 %}
<h1>Hello, this equals 15</h1>
{% else %}
<h1>This does not equal 15</h1>
{% end if %}
xxxxxxxxxx
{% if "error" in RepoOutput[RepoName.index(repo)] %}
<td id="error"> {{ RepoOutput[RepoName.index(repo)] }} </td>
{% elif "Already" in RepoOutput[RepoName.index(repo) %}
<td id="good"> {{ RepoOutput[RepoName.index(repo)] }} </td>
{% else %}
<td id="error"> {{ RepoOutput[RepoName.index(repo)] }} </td>
{% endif %}
</tr>
xxxxxxxxxx
{% if something_random == 15 %}
<h1>Hello, this equals 15</h1>
{% end if %}
xxxxxxxxxx
{% if ( (foo == 'foo' or bar == 'bar') and
(fooo == 'fooo' or baar == 'baar') ) %}
<li>some text</li>
{% endif %}
xxxxxxxxxx
{% if "Already" in RepoOutput[RepoName.index(repo)] %}
{% set row_class = "good" %}
{% else %}
{% set row_class = "error" %}
{% endif %}
<td class="{{ row_class }}"> {{ RepoOutput[RepoName.index(repo)] }} </td>