{% extends 'inventory/base.html' %} {% block title %}Product Details - {{ product.product_name }}{% endblock %} {% block content %}

Product Details: {{ product.product_name }} ({{ product.pid }})

Monthly Sales
Stock Adjustments
{% for adjustment in stock_adjustments %} {% endfor %}
Previous Value New Value Variance Created On
{{ adjustment.previous_value }} {{ adjustment.new_value }} {{ adjustment.variance }} {{ adjustment.created_on }}
{% if stock_adjustments.has_other_pages %} {% endif %}
Inquiries
{% for inquiry in inquiries %} {% endfor %}
Quantity Amount Created At
{{ inquiry.quantity }} {{ inquiry.amount }} {{ inquiry.created_at }}
{% if inquiries.has_other_pages %} {% endif %}

Total Amount from Inquiries: {{ total_amount_from_inquiries }}

{% endblock %}