{% extends 'base.html' %} {% load widget_tweaks %} {% block title %}{{ title }} - Ghana Wholesale{% endblock %} {% block content %}
{{ title }} (Ghana Market)
{% csrf_token %} {% if form.non_field_errors %}
{% for error in form.non_field_errors %} {{ error }} {% endfor %}
{% endif %}
Basic Information
{{ form.sku|add_class:"form-control"|attr:"placeholder:PROD-001" }} {% if form.sku.errors %}
{% for error in form.sku.errors %} {{ error }} {% endfor %}
{% endif %} Unique product code (required)
{{ form.barcode|add_class:"form-control"|attr:"placeholder:Optional" }} For barcode scanning (optional)
{{ form.name|add_class:"form-control"|attr:"placeholder:Enter product name" }} {% if form.name.errors %}
{% for error in form.name.errors %} {{ error }} {% endfor %}
{% endif %}
{{ form.category|add_class:"form-select" }}
{{ form.supplier|add_class:"form-select" }}
{{ form.unit|add_class:"form-select" }} Measurement unit (piece, kg, bag, etc.)
{{ form.description|add_class:"form-control"|attr:"rows:2"|attr:"placeholder:Optional description" }}
Ghana Pricing (Cedis)
GH₵ {{ form.cost_price|add_class:"form-control"|attr:"placeholder:0.00"|attr:"step:0.01" }}
{% if form.cost_price.errors %}
{% for error in form.cost_price.errors %} {{ error }} {% endfor %}
{% endif %} What you pay to buy
GH₵ {{ form.selling_price|add_class:"form-control"|attr:"placeholder:0.00"|attr:"step:0.01" }}
{% if form.selling_price.errors %}
{% for error in form.selling_price.errors %} {{ error }} {% endfor %}
{% endif %} Retail price for customers
GH₵ {{ form.wholesale_price|add_class:"form-control"|attr:"placeholder:Optional"|attr:"step:0.01" }}
Price for bulk buyers (optional)
Price Calculator
Profit per unit:
GH₵0.00
Profit margin:
0.0%
Ghana VAT (15%):
GH₵0.00
Stock Information
{{ form.initial_stock|add_class:"form-control"|attr:"placeholder:Enter quantity"|attr:"min:0" }} units
{% if form.initial_stock.errors %}
{% for error in form.initial_stock.errors %} {{ error }} {% endfor %}
{% endif %} {% if title == 'Create Product' or 'Add Product' in title %} Number of units to add to warehouse stock {% else %} Enter additional quantity to add to existing stock (enter 0 to keep current) {% endif %}
Stock Value Calculator
Total Stock Value:
GH₵0.00
Total Units:
0 units
Additional Information
{{ form.is_active|add_class:"form-check-input" }}
Inactive products won't appear in sales
Ghana Market Tips:
Pricing: Round to nearest 0.50 or 1.00 (e.g., GH₵5.00, GH₵10.50)
Markup: Typical 20-30% above cost price
Stock Quantity: Enter initial stock for warehouse
VAT: Standard rate is 15% (included in selling price)
Wholesale Price: Typically 10-20% below retail price for bulk buyers
Cancel
{% if title == 'Create Product' or 'Add Product' in title %} {% endif %}
{% endblock %} {% block extra_js %} {% endblock %}