Skip to content

Instantly share code, notes, and snippets.

@pedrohsbarbosa99
Created November 1, 2020 03:36
Show Gist options
  • Save pedrohsbarbosa99/f8b32261a4630c96b38aebf7b0bb6cd9 to your computer and use it in GitHub Desktop.
Save pedrohsbarbosa99/f8b32261a4630c96b38aebf7b0bb6cd9 to your computer and use it in GitHub Desktop.
<div class="container">
{% for next_days in next_four_days %}
<div class="card">
<div class="card" id="cards_next_days">
{% if '{{ next_days.min }}' == 12 %}
<img src="{% static 'icons/parcialmente-nublado.png' %}" style="margin-left: 10px;" width="80" height="80">
{% elif '{{ next_days.min }}' == 13 %}
<img src="{% static 'icons/1.jpg' %}" style="margin-left: 10px;" width="80" height="80">
{% endif %}
<div class="info">
<p class="title_next_day"> {{ next_days.weekday }}</p>
<p> Mínima : {{ next_days.min }} º Máximo : {{ next_days.max }} º</p>
<p> {{ next_days.description }} </p>
</div>
</div>
</div>
{% endfor %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment