From 80e5ebc04346b1aba37158dedbdd4045c0a7c042 Mon Sep 17 00:00:00 2001 From: Sam Chudnick Date: Sat, 10 Jun 2023 06:31:09 -0400 Subject: Moved files to src directory. Continued work on frontend. --- templates/base.html | 20 ------------- templates/index.html | 10 ------- templates/weather.html | 77 -------------------------------------------------- 3 files changed, 107 deletions(-) delete mode 100644 templates/base.html delete mode 100644 templates/index.html delete mode 100644 templates/weather.html (limited to 'templates') diff --git a/templates/base.html b/templates/base.html deleted file mode 100644 index 6fe776a..0000000 --- a/templates/base.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - {% block title %} {% endblock %} - - - - - -
- {% block content %} {% endblock %} -
- - - - diff --git a/templates/index.html b/templates/index.html deleted file mode 100644 index a877fef..0000000 --- a/templates/index.html +++ /dev/null @@ -1,10 +0,0 @@ -{% extends 'base.html' %} - -{% block content %} -

{% block title %} Enter a Location {% endblock %}

-
- {{ form.csrf_token }} - {{ form.location }} - {{ form.submit() }} -
-{% endblock %} diff --git a/templates/weather.html b/templates/weather.html deleted file mode 100644 index 24819dc..0000000 --- a/templates/weather.html +++ /dev/null @@ -1,77 +0,0 @@ -{% extends 'base.html' %} -{% block content %} -{% set is_day = data["current_weather"]["is_day"] %} -
- -
- {% set weather_code = data["current_weather"]["weathercode"] %} -
-
{{ weather_codes[weather_code] }}
-
{{ data["current_weather"]["temperature"]}}°F
-
Wind: {{ data["current_weather"]["windspeed"] }} MPH {{ data["current_weather"]["winddirection"] }}
-
Sunrise: {{ data["daily"]["sunrise"][0] }}
-
Sunset: {{ data["daily"]["sunset"][0] }}
-
-
- -
-
-

Hourly Forecast

-
- {% for i in range(hour, hour + 24) %} -
-
-
{{ data["hourly"]["time"][i] }}
-
- {{ weather_codes[data["hourly"]["weathercode"][i]] }} - {% if data["hourly"]["weathercode"][i] > 50 %} - ({{ data["hourly"]["precipitation"][i] }}in, {{ data["hourly"]["precipitation_probability"][i] }}%) - {% endif %} -
-
{{ data["hourly"]["temperature_2m"][i]}}°F
-
Humidity: {{ data["hourly"]["relativehumidity_2m"][i] }}%
-
Wind: {{ data["hourly"]["windspeed_10m"][i] }}MPH {{ data["hourly"]["winddirection_10m"][i] }}
-
-
- {% set weather_code = data["hourly"]["weathercode"][i] %} - -
-
- {% endfor %} -
-
-

Daily Forecast

-
-
- {% for i in range(7) %} -
-
-
{{ data["daily"]["time"][i] }}
-
- {{ weather_codes[data["daily"]["weathercode"][i]] }} - {% if data["daily"]["weathercode"][i] > 50 %} - ({{ data["daily"]["precipitation_sum"][i] }}in, {{ data["daily"]["precipitation_probability_max"][i] }}%) - {% endif %} -
-
High: {{ data["daily"]["temperature_2m_max"][i] }}°F
-
Low: {{ data["daily"]["temperature_2m_min"][i] }}°F
-
Sunrise: {{ data["daily"]["sunrise"][i] }}
-
Sunset: {{ data["daily"]["sunset"][i] }}
-
-
- {% set weather_code = data["daily"]["weathercode"][i] %} - -
-
- {% endfor %} -
- -
-{% endblock %} - -- cgit v1.2.3