{% extends 'base.html' %} {% block title %}Shops - Wholesale Management System{% endblock %} {% block breadcrumb %} {% endblock %} {% block page_title %}

Shops Management

Manage your retail and wholesale stores

Add New Shop
{% endblock %} {% block content %}
Total Shops

{{ shops|length }}

Retail Stores

{{ shops|length }}

Warehouses

0

Active Shops

{{ shops|length }}

Shop List {{ shops|length }} shops
{% if shops %}
{% for shop in shops %} {% endfor %}
Code Shop Name Type Location Contact Inventory Status Actions
{{ shop.code }}
{{ shop.name }}
Opened: {{ shop.opening_date|date:"M d, Y" }}
{{ shop.get_shop_type_display }} {{ shop.city }}, {{ shop.state }}
{{ shop.pin_code }}
{{ shop.phone }} {% if shop.email %}
{{ shop.email|truncatechars:20 }} {% endif %}
{% if shop.total_items %} {{ shop.total_items }} items {% else %} No inventory data {% endif %}
{% if shop.is_active %} Active {% else %} Inactive {% endif %}
{% else %}

No Shops Found

{% if search_query %} No shops match your search "{{ search_query }}" {% else %} You haven't added any shops yet. {% endif %}

Add Your First Shop
{% endif %} {% if shops.has_other_pages %} {% endif %}
{% endblock %} {% block extra_js %} {% endblock %}