{% extends 'base.html' %} {% block title %}Produkty i sugestie{% endblock %} {% block content %}
| 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 | |||||||||||
| ID | Nazwa | Akcje | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ suggestion.id }} | {{ suggestion.name }} | ||||||||||
| Brak niepowiązanych sugestii do wyświetlenia | |||||||||||