{% extends 'core/base.html' %} {% load static %} {% block title %}Branch: {{ branch.name }} - SwiftPOS{% endblock %} {% block topbar_title %} Branch Detail {% endblock %} {% block content %}
{% if messages %} {% for message in messages %}
{% if message.tags == 'success' %} {% elif message.tags == 'error' or message.tags == 'danger' %} {% elif message.tags == 'warning' %} {% else %} {% endif %}
{{ message }}
{% endfor %} {% endif %}
{{ branch.name }} {% if not branch.is_active %} Inactive {% endif %}
{{ branch.address|default:"No address provided" }} {% if branch.phone %} ยท {{ branch.phone }} {% endif %}
Today Sales
{{ currency_symbol }}{{ today_sales|floatformat:2 }}
{{ total_orders_today }} order{{ total_orders_today|pluralize }}
This Month Sales
{{ currency_symbol }}{{ month_sales|floatformat:2 }}
{{ total_orders_month }} order{{ total_orders_month|pluralize }}
Users in Branch
{{ users|length }}
Admins, managers & cashiers
Branch Users
{% if users %} {% for u in users %} {% endfor %} {% else %} {% endif %}
User Role
{{ u.get_full_name|default:u.username }}
{{ u.email|default:"" }}
{{ u.role|title }}
No users assigned to this branch yet.
Today Orders
{% if orders_today %} {% for order in orders_today %} {% endfor %} {% else %} {% endif %}
Order Customer Amount Cashier
{{ order.created_at|date:"Y-m-d H:i" }}
{{ order.customer_name|default:"Walk-in" }} {{ currency_symbol }}{{ order.final_amount|floatformat:2 }} {{ order.cashier }}
No orders recorded today for this branch.
{% endblock %}