{% extends "layout.html" %} {% block title %}OptiWarm - Locations{% endblock %} {% block content %}

Locations

Add Location
{% if locations %}
{% for location in locations %} {% endfor %}
Name Description Phone Zones Billing Period Actions
{{ location.name }} {{ location.description|truncate(50) if location.description else "-" }} {{ location.phone if location.phone else "-" }} {{ location.active_zones_count }} active zones {{ location.billing_period_name if location.billing_period is not none else "-" }}
{% else %} {% endif %}
{% endblock %}