You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
494 B
19 lines
494 B
{% extends "base.html" %}
|
|
|
|
{% block title %}Index Page{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>My First Heading</h1>
|
|
<p>My value: {{ value }}</p>
|
|
<p>My result: {{ result }}</p>
|
|
<ul>
|
|
{% for item in list %}
|
|
{% if item == 30 %}
|
|
<li style="color: red">{{ item }}</li>
|
|
{% else %}
|
|
<li {%if item == 20 %} style="color: blue" {%endif%} >{{ item }}</li>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</ul>
|
|
{% endblock %}
|