{% extends 'base.html' %} {% block content %}
| 📅 Date | 👤 Supplier | 🏭 Farm | ⚖️ Weight | 💲 Price/kg | 💰 Total |
|---|---|---|---|---|---|
| {{ p.date|date_format }} | {{ p.supplier.name }} | {% if p.farm %} {{ p.farm.name }} {% else %} - {% endif %} | {{ p.weight_kg|kg }} | {{ p.price_per_kg|currency }} | {{ p.total_amount|currency }} |
Start by recording your first purchase from a farm.
{% if current_user.role in ['admin','supplier'] %} ➕ Record First Purchase {% endif %}