blob: 56f9d9bb72f1c4ca28f0b9a4411a565db7e40b4d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{% extends 'base.html' %}
{% block content %}
<div class=weather-box>
{% for item in data %}
<div class=daily-box>
{{ item.time.strftime("%a %x %I:%M %p") }} <br>
{{ item.temp }}°F <br>
{{ item.humidity }}%<br>
{{ item.precip_chance }}%<br>
{{ item.precip_amount }}in<br>
{{ item.wind_speed }}MPH<br>
{{ item.wind_direction }}<br><br>
</div>
{% endfor %}
</div>
{% endblock %}
|