diff --git a/src/django_smartbase_admin/templates/sb_admin/integrations/sorting/change_list.html b/src/django_smartbase_admin/templates/sb_admin/integrations/sorting/change_list.html
deleted file mode 100644
index 1e93cbd4..00000000
--- a/src/django_smartbase_admin/templates/sb_admin/integrations/sorting/change_list.html
+++ /dev/null
@@ -1,401 +0,0 @@
-{% extends list_base_template|default:"sb_admin/actions/list.html" %}
-{% load static i18n thumbnail admin_list smartshop_tags %}
-
-{% block tabulator_custom_header %}
- {% include 'sb_admin/components/filters.html' with filters=content_context.filters all_filters_visible=True %}
-{% endblock %}
-{% block tabulator_body %}
- {{ block.super }}
- {% if category_id and alias_id %}
-
- {% for item in data.data %}
- {% block promo_card %}
- {% if promo_cards and forloop.counter in promo_cards %}
- {% for promo_card in promo_cards|get_attr_from_dict:forloop.counter %}
-
-
- {{ promo_card.id }} - {{ promo_card.name }}
- P:
-
-
- {% endfor %}
- {% endif %}
- {% endblock %}
- {% block item %}
-
-
-
- {% block sorting_product_attributes %}
- P:
- {{ item.product_name }}
- {{ item.sorting_identifier|default_if_none:'' }}
- {% endblock %}
-
-
- {% endblock %}
- {% endfor %}
-
- {% else %}
-
- {% trans "Please select a category and domain(in bottom left corner) to sort." %}
-
- {% endif %}
-{% endblock %}
-
-{% block content %}
- {{ block.super }}
-
-
-
- {% trans 'Operations' %}
-
-
-
{% trans 'Move to first' %}
-
-
-
-
{% trans 'Set' %}
-
-
-
-{% endblock %}
-
-{% block style_init %}
-
-{% endblock %}
-
-{% block additional_js %}
- {{ block.super }}
-
-
-
-
-
-{% endblock %}