{% extends "base.html" %} {% load static %} {% block title %}{{ vendor.store_name }} — Dashboard{% endblock %} {% block extra_css %} {% endblock %} {% block body %}

Dashboard

Welcome back, {{ vendor.store_name }}

Product usage: {{ product_count }}/{{ product_limit }} {% if at_product_limit %} (Limit reached) {% else %} (You can add {{ remaining_slots }} more product{{ remaining_slots|pluralize }}) {% endif %}

{% if at_product_limit %} {% else %} Add Product {% endif %}
{{ product_count }}
Total Products
{{ active_count }}
In Stock

Your Products

{% if products %}
{% for product in products %}
{% if product.primary_image_url %}
{{ product.name }}
{% else %}
No Image
{% endif %}
{% if product.brand %} {{ product.brand }} {% endif %}

{{ product.name }}

{{ product.currency }} {{ product.price }}
Category: {{ product.category|default:"—" }}
Stock: {{ product.in_stock|yesno:"In Stock,Out of Stock" }}
Edit
{% csrf_token %}
{% endfor %}
{% else %}

No products yet

Add your first product to start selling through ACA's AI assistant.

Add Your First Product
{% endif %} {% if orders %}

Recent Orders

{% for vo in orders %} {% endfor %}
Order Customer Amount Status Date
{{ vo.order.order_number }} {{ vo.order.customer_name }} ${{ vo.total_amount }} {{ vo.get_status_display }} {{ vo.created_at|date:"M d, Y" }}
{% endif %}
{% endblock %}