{% extends 'base.html' %} {% block title %}Produkty i sugestie{% endblock %} {% block content %}

🛍️ Produkty i sugestie

← Powrót do panelu
{% include 'admin/_nav.html' %}

📦 Produkty (z synchronizacją sugestii o unikalnych nazwach)

{{ total_items }} produktów
{% for item in items %} {% endfor %} {% if items|length == 0 %} {% endif %}
ID Nazwa Dodany przez Ilość użyć Akcja
{{ item.id }} {{ item.name }} {% if item.added_by and users_dict.get(item.added_by) %} 👤 {{ users_dict[item.added_by] }} ({{ item.added_by }}) {% else %} - {% endif %} {{ usage_counts.get(item.name.lower(), 0) }} {% set clean_name = item.name | replace('\xa0', ' ') | trim | lower %} {% set suggestion = suggestions_dict.get(clean_name) %} {% if suggestion %} ✅ Istnieje (ID: {{ suggestion.id }}) {% else %} {% endif %}
Pusta lista produktów

💡 Wszystkie sugestie (poza powiązanymi)

{{ orphan_suggestions|length }} sugestii
{% set item_names = items | map(attribute='name') | map('lower') | list %} {% for suggestion in orphan_suggestions %} {% if suggestion.name.lower() not in item_names %} {% endif %} {% endfor %} {% if orphan_suggestions|length == 0 %} {% endif %}
ID Nazwa Akcje
{{ suggestion.id }} {{ suggestion.name }}
Brak niepowiązanych sugestii do wyświetlenia

{% block scripts %} {% endblock %} {% endblock %}