{%extends "layout.html"%} {%block content%} {% if T >= 30 and T < 5505 %}

The temperature is:{{T}}C

It's like Tatooine out there!

{% elif T >= 5505 %}

The temperature is:{{T}}C

It's like The Sun out there!

{% elif T < 10 and T > -10 %}

The temperature is:{{T}}C

It's like Hoth out there!

{% elif T <= -10 %}

The temperature is:{{T}}C

It's like Bahryn out there!

{%else%}

The temperature is:{{T}}C

It's like naboo out there!

{%endif%} {%endblock content%}