{% extends "django_meta_whatsapp/base.html" %} {% block title %}Catalog Products{% endblock %} {% block page_title %}Catalog Products{% endblock %} {% block topbar_actions %} Sync from Meta Add Product {% endblock %} {% block content %}
{% for product in products %} {% empty %} {% endfor %}
Image Product Name Price Retailer ID Status Actions
{% if product.image_url %} {{ product.name }} {% else %}
{% endif %}
{{ product.name }} {{ product.price|default:"-" }} {{ product.retailer_id }} {% if product.is_active %} Active {% else %} Inactive {% endif %}

No products found.

Sync from Meta
{% if is_paginated %}
Showing page {{ page_obj.number }} of {{ page_obj.paginator.num_pages }}
{% if page_obj.has_previous %} Previous {% endif %} {% if page_obj.has_next %} Next {% endif %}
{% endif %}
{% endblock %}