{% extends "admin_base.html" %} {% block title %}Manage Climates{% endblock %} {% block admin_content %}

Add New Climate

Existing Climates

{% for climate in climates %}
{% if climate.icon %} Icon {% endif %}

{{ climate.name }}

{% if climate.description %}

{{ climate.description }}

{% endif %}
Edit
{% else %}

No climates added yet.

{% endfor %}
{% endblock %}