{% extends 'base.html' %} {% block content %}

📦 New Purchase

← Back to Purchases
🏭

Record New Purchase

Add a new purchase from a farm

{{ form.hidden_tag() }}
{{ form.farm_id(class="form-control", style="padding: 12px; border: 2px solid #e9ecef; border-radius: 6px; font-size: 16px;") }} {% if form.farm_id.errors %}
{{ form.farm_id.errors[0] }}
{% endif %}
{{ form.date(type='date', class="form-control", style="padding: 12px; border: 2px solid #e9ecef; border-radius: 6px; font-size: 16px;") }} {% if form.date.errors %}
{{ form.date.errors[0] }}
{% endif %}
{{ form.weight_kg(step='0.01', class="form-control", style="padding: 12px; border: 2px solid #e9ecef; border-radius: 6px; font-size: 16px;", placeholder="Enter weight in kg") }} {% if form.weight_kg.errors %}
{{ form.weight_kg.errors[0] }}
{% endif %}
{{ form.price_per_kg(step='0.01', class="form-control", style="padding: 12px; border: 2px solid #e9ecef; border-radius: 6px; font-size: 16px;", placeholder="Enter price per kg") }} {% if form.price_per_kg.errors %}
{{ form.price_per_kg.errors[0] }}
{% endif %}
💰 Total Amount
PKR 0.00
🧮
Cancel {{ form.submit(class='btn-primary', style='padding: 12px 24px; font-weight: 600;') }}
{% endblock %}