{% extends "base.html" %} {% block title %}Dashboard | Arbit{% endblock %} {% block content %}
Items

{{ stats.item_count }}

Sold

{{ stats.sold_count }}

Inventory cost

${{ stats.inventory_value }}

Current items

Focus on inventory, suggested resale pricing, and quick actions.
Add item

Search inventory

{{ item_filter.query.label_tag }}{{ item_filter.query }} {{ item_filter.status.label_tag }}{{ item_filter.status }} {{ item_filter.category.label_tag }}{{ item_filter.category }} {{ item_filter.created_by.label_tag }}{{ item_filter.created_by }} {{ item_filter.min_purchase_price.label_tag }}{{ item_filter.min_purchase_price }} {{ item_filter.max_purchase_price.label_tag }}{{ item_filter.max_purchase_price }} {{ item_filter.min_profit.label_tag }}{{ item_filter.min_profit }}

Latest items

{% for item in items %} {% empty %} {% endfor %}
TitleCategoryStatusCostCreatorProfit
{{ item.title }} {{ item.category }} {{ item.get_status_display }} ${{ item.purchase_price }} {{ item.created_by.username }} {% if item.profit is not None %}${{ item.profit }}{% else %}Pending sale{% endif %}
No items yet.
Inventory cost

${{ stats.inventory_value }}

Profit total

${{ stats.profit_total }}

Sold count

{{ stats.sold_count }}

{% endblock %}