{% extends 'base.html' %} {% block title %}Create Product{% endblock title %} {% block page_content %} {% include 'messages.html' %}
Post New Stock
{% csrf_token %} {{ form.as_p }}
10 Most Recent Stock Posted
{% if stock_list|length > 0 %} {% for stock in stock_list %} {% endfor %}
DateNameQtyBuyingSupplier
{{ stock.posted|date:'d-m-Y' }} {{ stock.product.name }} {{ stock.quantity }} {{ stock.buying_price }} {{ stock.received_from }}
{% else %}
No products have been added yet
{% endif %}
{% endblock page_content %}