{% extends "base.html" %} {% load static %} {% block title %}{{ title }}{% endblock %} {% block header_title %}{{ title }}{% endblock %} {% block content %}
{{ title }}
Current Stock Information

{{ product.name }}

{{ product.category.name|default:"Uncategorized" }}

{{ product.quantity }}

{{ product.low_stock_threshold }}

{% csrf_token %}
{{ form.adjustment_type }} {% if form.adjustment_type.errors %}
{{ form.adjustment_type.errors }}
{% endif %}
{{ form.quantity }} {% if form.quantity.errors %}
{{ form.quantity.errors }}
{% endif %}
{{ form.reason }} {% if form.reason.errors %}
{{ form.reason.errors }}
{% endif %} {% if form.reason.help_text %}
{{ form.reason.help_text }}
{% endif %}
Back to Product Details
{% endblock %} {% block extra_js %} {% endblock %}