{% extends "base.html" %} {% block title %}Products{% endblock %} {% block content %}

inventory_2 Products

{% if last_product_sync %} last synced (sync now) {% endif %}
{{ products|length }} product{{ 's' if products|length != 1 }}
{# Filters bar #}
search
{% if products %}
{% for p in products %} {# Product: icon + name #} {# Type badge #} {# Status badge: green=confirm, orange=declined #} {# Version #} {# Rating #} {# PS Compatibility #} {# Price #} {# Open Tickets #} {# Support Load 30d #} {# Guides #} {# Module ZIP upload #} {# Module Slug (inline edit — hidden for bundles) #} {# Last Update #} {# Actions #} {% endfor %}
Product Status Price
{% if p.product_type == 'business_care' %}
BC
{% elif p.pico_url %} {% else %}
extension
{% endif %}
{{ p.name }} {% if p.is_online == false %} offline {% endif %}
{% if p.status %} {% if p.status == 'confirm' %} {{ p.status }} {% elif p.status == 'declined' %} {{ p.status }} {% else %} {{ p.status }} {% endif %} {% else %} -- {% endif %} {{ p.display_price or p.price or '--' }}
{% else %}
inventory_2

No products synced yet.

Products are synced automatically when you run a sync.

{% endif %}
{# ── Guide Candidates Panel ── #}

Guide Candidates

{# ── Module Upload Modal ── #} {% endblock %}