{% extends 'core/base.html' %} {% load static %} {% load plan_tags %} {% block title %}Branches - SwiftPOS{% endblock %} {% block topbar_title %}Branches{% endblock %} {% block content %}
Branches
Manage your shops / outlets
{% if allow_multi_branch %} Add Branch {% else %} Multi-branch is disabled on your plan. {% endif %}
{% for branch in branches %} {% empty %} {% endfor %}
Name Code Phone Address Status Actions
{{ branch.name }} {{ branch.code }} {{ branch.phone|default:"-" }} {{ branch.address|default:"-" }} {% if branch.is_active %} Active {% else %} Inactive {% endif %} Edit {% if branches|length > 1 %}
{% csrf_token %}
{% endif %}
No branches found.
{% endblock %}