{% extends "base.html" %} {% block title %}Branches - AsapLoads POS{% endblock %} {% block header_title %}Branches{% endblock %} {% block content %}
Branches
Manage your business locations
Add Branch
{% if branches %}
{% for branch in branches %} {% endfor %}
Name Address Contact Users Products License Status Actions
{{ branch.name }} {{ branch.address }} {% if branch.email %}
{{ branch.email }}
{% endif %} {% if branch.phone %}
{{ branch.phone }}
{% endif %}
{{ branch.user_count }} users {{ branch.product_count }} products {% if branch.active_license > 0 %} Active {% else %} Inactive License {% endif %} {% if branch.is_active %} Active {% else %} Inactive {% endif %}
{% else %}

No branches found. Add a branch to get started.

{% endif %}
{% endblock %}