diff --git a/app.py b/app.py index fbdada0..6f28d09 100644 --- a/app.py +++ b/app.py @@ -2900,6 +2900,7 @@ def list_products(): query_string = urlencode({k: v for k, v in request.args.items() if k != "page"}) + synced_names = set(suggestions_dict.keys()) return render_template( "admin/list_products.html", @@ -2912,7 +2913,8 @@ def list_products(): total_pages=total_pages, query_string=query_string, total_items=total_items, - usage_counts=usage_counts + usage_counts=usage_counts, + synced_names=synced_names ) diff --git a/templates/admin/list_products.html b/templates/admin/list_products.html index 54597da..50f16f0 100644 --- a/templates/admin/list_products.html +++ b/templates/admin/list_products.html @@ -38,13 +38,14 @@