{% extends "django_meta_whatsapp/base.html" %} {% block title %}{% if object %}Edit Product{% else %}New Product{% endif %}{% endblock %} {% block page_title %}{% if object %}Edit {{ object.name }}{% else %}New Product{% endif %}{% endblock %} {% block topbar_actions %} Back {% endblock %} {% block content %}
{% csrf_token %} {% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %}
{% if form.catalog_id.errors %}

{{ form.catalog_id.errors.0 }}

{% endif %}

The ID of your Meta Commerce Catalog.

{% if form.retailer_id.errors %}

{{ form.retailer_id.errors.0 }}

{% endif %}

Your local SKU / ID matching the product in Meta.

{% if form.name.errors %}

{{ form.name.errors.0 }}

{% endif %}
{% if form.price.errors %}

{{ form.price.errors.0 }}

{% endif %}
{% if form.image_url.errors %}

{{ form.image_url.errors.0 }}

{% endif %}
{% endblock %}