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

inventory_2 Products

{{ 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 Slug (inline edit — hidden for bundles) #} {# Last Update #} {# Actions #} {% endfor %}
Product Type Status Version Rating PS Compat. Price Open Tickets Support 30d Guides Slug Last Update Actions
{% 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.product_type %} {{ p.product_type }} {% else %} -- {% endif %} {% if p.status %} {% if p.status == 'confirm' %} {{ p.status }} {% elif p.status == 'declined' %} {{ p.status }} {% else %} {{ p.status }} {% endif %} {% else %} -- {% endif %} {{ p.current_version or '--' }} {% if p.avg_rating %}
star {{ p.avg_rating }} {% if p.total_ratings %} ({{ p.total_ratings }}) {% endif %}
{% else %} -- {% endif %}
{% if p.compatibility_min or p.compatibility_max %} {{ p.compatibility_min or '?' }} – {{ p.compatibility_max or '?' }} {% else %} -- {% endif %} {{ p.display_price or p.price or '--' }} {% if p.open_tickets > 0 %} {{ p.open_tickets }} {% else %} 0 {% endif %} {% set total_load = p.tickets_30d + p.msgs_30d %} {% if total_load > 0 %} {% if total_load >= 10 %} {% set bg = 'bg-red-50 dark:bg-red-500/10' %}{% set text = 'text-red-700 dark:text-red-400' %} {% elif total_load >= 5 %} {% set bg = 'bg-orange-50 dark:bg-orange-500/10' %}{% set text = 'text-orange-700 dark:text-orange-400' %} {% else %} {% set bg = 'bg-blue-50 dark:bg-blue-500/10' %}{% set text = 'text-blue-700 dark:text-blue-400' %} {% endif %}
{{ p.tickets_30d }}t / {{ p.msgs_30d }}m
{% else %} -- {% endif %}
{% set gc = guides_count.get(p.id, 0) %} {% if gc > 0 %} {{ gc }} {% else %} 0 {% endif %} {% if p.product_type == 'bundle' %} -- {% else %}
{% endif %}
{% if p.product_type == 'bundle' %} depends on bundle products {% elif p.last_update_at %}
{{ p.last_update_at.strftime('%Y-%m-%d') }} {% if p.days_since_update is not none %} {% if p.days_since_update <= 30 %} {{ p.days_since_update }}d {% elif p.days_since_update <= 60 %} {{ p.days_since_update }}d {% else %} {{ p.days_since_update }}d {% endif %} {% endif %}
{% else %} -- {% endif %}
open_in_new Addons
{% else %}
inventory_2

No products synced yet.

Products are synced automatically when you run a sync.

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

Guide Candidates

{% endblock %}