{% extends "base.html" %}{% block title %}Branches{% endblock %}{% block page_title %}Branch Management{% endblock %} {% block content %}

Add Branch

Configured Branches

{% for branch in branches %}{% endfor %}
CodeBranchStatus
{{ branch.code }}{{ branch.name }}
{{ branch.address or '' }}
{{ 'Active' if branch.is_active else 'Inactive' }}
{% endblock %}