crypto, forex and weather api caller refactored

This commit is contained in:
Neythen
2021-09-25 10:40:29 +01:00
parent 24e4e890ef
commit 24a1bc882f
14 changed files with 250 additions and 241 deletions

View File

@@ -1000,9 +1000,9 @@
<div class="features-div-two">
<ul
id="current-weather-features"
class="display-features-list text-dark city-list"
class="display-features-list text-dark location-list"
>
{% for f in current_weather.cities.keys() %}
{% for f in current_weather.locations.keys() %}
<li>{{f}}</li>
{% endfor%}
</ul>
@@ -1204,9 +1204,9 @@
<div class="features-div-two">
<ul
id="daily-forecast-features"
class="display-features-list text-dark city-list"
class="display-features-list text-dark location-list"
>
{% for f in daily_weather.cities.keys() %}
{% for f in daily_weather.locations.keys() %}
<li>{{f}}</li>
{% endfor%}
</ul>