{% extends 'base.html' %} {% block title %}{% if product %}Edit{% else %}Add{% endif %} Product — PickkerMarket{% endblock %} {% block content %}
{% csrf_token %}

{% if product %}Edit{% else %}Add{% endif %} Product

{% for field in form %} {{ field }} {% if field.help_text %}{{ field.help_text }}{% endif %} {% if field.errors %}
{{ field.errors }}
{% endif %} {% endfor %}
{% if product %}

Manage measures (bucket, sack, sadolin, piece) →

{% endif %}

Registered categories

Categories offered above come from this registered list — add a new one here if it's missing.

{% if categories %}
{% for c in categories %}{{ c.name }}{% endfor %}
{% endif %}
{% csrf_token %}

← Back to admin portal

{% endblock %}