{% extends "base.html" %} {% load static %} {% block title %}{{ title }}{% endblock %} {% block header_title %}{{ title }}{% endblock %} {% block extra_head %} {% endblock %} {% block content %}
{{ title }}
{% csrf_token %}
{{ form.name }} {% if form.name.errors %}
{{ form.name.errors }}
{% endif %}
{{ form.category }} {% if form.category.errors %}
{{ form.category.errors }}
{% endif %}
{{ form.price }} {% if form.price.errors %}
{{ form.price.errors }}
{% endif %}
{{ form.barcode }} {% if form.barcode.errors %}
{{ form.barcode.errors }}
{% endif %}
Optional barcode for scanning.
{{ form.quantity }} {% if form.quantity.errors %}
{{ form.quantity.errors }}
{% endif %}
{{ form.low_stock_threshold }} {% if form.low_stock_threshold.errors %}
{{ form.low_stock_threshold.errors }}
{% endif %}
Alert when stock falls below this level.
{% if user.role == 'admin' %}
{{ form.is_active }}
{% if form.is_active.errors %}
{{ form.is_active.errors }}
{% endif %}
Inactive products won't appear in sales screens.
{% else %} {{ form.is_active.as_hidden }} {% endif %}
{% if user.role == 'admin' %}
{{ form.branch }} {% if form.branch.errors %}
{{ form.branch.errors }}
{% endif %}
{% else %} {{ form.branch.as_hidden }} {% endif %}
{% if form.instance.image %} {{ form.instance.name }} {% else %}
Preview {% endif %}
{{ form.image }} {% if form.image.errors %}
{{ form.image.errors }}
{% endif %}
Recommended: Square image, 500x500px or larger.
{{ form.description }} {% if form.description.errors %}
{{ form.description.errors }}
{% endif %}
Back to List
{% block extra_js %} {% endblock %} {% endblock %}