{{ product.name | length > 65 ? product.name | slice(0, 65) ~ '...' : product.name }}
-
+
@@ -26,14 +26,14 @@
diff --git a/mirzaev/arming_bot/system/views/themes/default/cart/elements/summary.html b/mirzaev/arming_bot/system/views/themes/default/cart/elements/summary.html
index 8dd7c47..3f1a5c0 100755
--- a/mirzaev/arming_bot/system/views/themes/default/cart/elements/summary.html
+++ b/mirzaev/arming_bot/system/views/themes/default/cart/elements/summary.html
@@ -1,13 +1,19 @@
{% if cart.products is not empty %}
+ class="column unselectable">
{{ cart.summary.amount ?? 0 }}
{{ language.name == "ru" ? "товаров на сумму" : "products worth" }}
{{ cart.summary.cost ?? 0 }}
-
diff --git a/mirzaev/arming_bot/system/views/themes/default/cart/page.html b/mirzaev/arming_bot/system/views/themes/default/cart/page.html
index 8ee16e2..6dc994a 100755
--- a/mirzaev/arming_bot/system/views/themes/default/cart/page.html
+++ b/mirzaev/arming_bot/system/views/themes/default/cart/page.html
@@ -20,7 +20,8 @@
{% block js %}
{{ parent() }}
-
-
+
+
+
{% endblock %}
diff --git a/mirzaev/arming_bot/system/views/themes/default/catalog/elements/categories.html b/mirzaev/arming_bot/system/views/themes/default/catalog/elements/categories.html
index 8587705..ed335a5 100755
--- a/mirzaev/arming_bot/system/views/themes/default/catalog/elements/categories.html
+++ b/mirzaev/arming_bot/system/views/themes/default/catalog/elements/categories.html
@@ -1,12 +1,13 @@
{% if categories is not empty %}
{% for category in categories %}
-
{% if category.images %}
-
+
{% endif %}
{{ category.name }}
diff --git a/mirzaev/arming_bot/system/views/themes/default/catalog/elements/filters.html b/mirzaev/arming_bot/system/views/themes/default/catalog/elements/filters.html
index cae919b..dd8d208 100755
--- a/mirzaev/arming_bot/system/views/themes/default/catalog/elements/filters.html
+++ b/mirzaev/arming_bot/system/views/themes/default/catalog/elements/filters.html
@@ -2,21 +2,22 @@
{% endif %}
diff --git a/mirzaev/arming_bot/system/views/themes/default/catalog/elements/products.html b/mirzaev/arming_bot/system/views/themes/default/catalog/elements/products.html
index e3b23ce..a16fcec 100755
--- a/mirzaev/arming_bot/system/views/themes/default/catalog/elements/products.html
+++ b/mirzaev/arming_bot/system/views/themes/default/catalog/elements/products.html
@@ -1,23 +1,24 @@
-{% macro card(product) %}
-{% set title = product.name ~ ' ' ~ product.brand ~ format_dimensions(product.dimensions.x,
+{% macro card(cart, product) %}
+{% set title = product.brand ~ format_dimensions(product.dimensions.x,
product.dimensions.y, product.dimensions.z, ' ') ~ ' ' ~ product.weight ~ 'г' %}
-{% set amount = cart[product.getId()].amount ?? 0 %}
- 0 %} style="--hue-rotate-offset: {{ amount }}0deg;"{% endif %}>
-
-
-
- {{ title | length > 45 ? title | slice(0, 45) ~ '...' : title }}
+
+
+ {{ product.name }}
+ {{ title | length > 45 ? title | slice(0, 45) ~ '...' : title }}
-
-
+
+
{{ amount }}
{{ product.cost }}
-
+
{% endmacro %}
@@ -26,14 +27,14 @@ product.dimensions.y, product.dimensions.z, ' ') ~ ' ' ~ product.weight ~ 'г' %
{% for product in products %}
{% if loop.index % 2 == 1 %}
- {{ _self.card(product) }}
+ {{ _self.card(cart, product) }}
{% endif %}
{% endfor %}
{% for product in products %}
{% if loop.index % 2 == 0 %}
- {{ _self.card(product) }}
+ {{ _self.card(cart, product) }}
{% endif %}
{% endfor %}
diff --git a/mirzaev/arming_bot/system/views/themes/default/catalog/elements/search.html b/mirzaev/arming_bot/system/views/themes/default/catalog/elements/search.html
index 2f2d8bb..ef25fc4 100755
--- a/mirzaev/arming_bot/system/views/themes/default/catalog/elements/search.html
+++ b/mirzaev/arming_bot/system/views/themes/default/catalog/elements/search.html
@@ -2,6 +2,6 @@
{% set buffer_search = session.buffer.catalog.search.text ?? account.buffer.catalog.search.text %}
diff --git a/mirzaev/arming_bot/system/views/themes/default/catalog/page.html b/mirzaev/arming_bot/system/views/themes/default/catalog/page.html
index c91c7bd..1921a4c 100755
--- a/mirzaev/arming_bot/system/views/themes/default/catalog/page.html
+++ b/mirzaev/arming_bot/system/views/themes/default/catalog/page.html
@@ -21,7 +21,7 @@
{% block js %}
{{ parent() }}
-
-
-
+
+
+
{% endblock %}
diff --git a/mirzaev/arming_bot/system/views/themes/default/connection.html b/mirzaev/arming_bot/system/views/themes/default/connection.html
index 53f3816..90fd672 100755
--- a/mirzaev/arming_bot/system/views/themes/default/connection.html
+++ b/mirzaev/arming_bot/system/views/themes/default/connection.html
@@ -10,5 +10,5 @@
{% endblock %}
{% block js %}
-
+
{% endblock %}
diff --git a/mirzaev/arming_bot/system/views/themes/default/footer.html b/mirzaev/arming_bot/system/views/themes/default/footer.html
index 8322f33..8a06f47 100755
--- a/mirzaev/arming_bot/system/views/themes/default/footer.html
+++ b/mirzaev/arming_bot/system/views/themes/default/footer.html
@@ -1,10 +1,15 @@
+{% use "/themes/default/offer.html" with css as offer_css, body as offer_body, js as offer_js %}
+
{% block css %}
+{{ block('offer_css') }}
{% endblock %}
{% block body %}
{% endblock %}
{% block js %}
+{{ block('offer_js') }}
{% endblock %}
diff --git a/mirzaev/arming_bot/system/views/themes/default/head.html b/mirzaev/arming_bot/system/views/themes/default/head.html
index 148a688..05e047b 100755
--- a/mirzaev/arming_bot/system/views/themes/default/head.html
+++ b/mirzaev/arming_bot/system/views/themes/default/head.html
@@ -12,14 +12,16 @@
{% block css %}
-
-
+
+
-
+
{% endblock %}
diff --git a/mirzaev/arming_bot/system/views/themes/default/iframes/robokassa.html b/mirzaev/arming_bot/system/views/themes/default/iframes/robokassa.html
new file mode 100755
index 0000000..3b37b08
--- /dev/null
+++ b/mirzaev/arming_bot/system/views/themes/default/iframes/robokassa.html
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/mirzaev/arming_bot/system/views/themes/default/index.html b/mirzaev/arming_bot/system/views/themes/default/index.html
index f0f2603..3132e44 100755
--- a/mirzaev/arming_bot/system/views/themes/default/index.html
+++ b/mirzaev/arming_bot/system/views/themes/default/index.html
@@ -15,7 +15,7 @@
{% block body %}
-
+{{ block('account_body') }}
{{ block('header') }}
{% block main %}
@@ -27,7 +27,7 @@
{% block js %}
{{ parent() }}
-{{ block('connection_js') }}
+
{{ block('account_js') }}
{{ block('header_js') }}
{{ block('footer_js') }}
diff --git a/mirzaev/arming_bot/system/views/themes/default/js.html b/mirzaev/arming_bot/system/views/themes/default/js.html
index 8b05cb3..02d8929 100755
--- a/mirzaev/arming_bot/system/views/themes/default/js.html
+++ b/mirzaev/arming_bot/system/views/themes/default/js.html
@@ -1,11 +1,12 @@
{% block js %}
-
+
-
-
-
+
+
+
+
{% if javascript is not empty %}
-
+
+
{% endblock %}