diff --git a/webshop/www/all-products/index.html b/webshop/www/all-products/index.html index 026bf38f26..cbd76632b6 100644 --- a/webshop/www/all-products/index.html +++ b/webshop/www/all-products/index.html @@ -1,9 +1,9 @@ {% from "webshop/templates/includes/macros.html" import attribute_filter_section, field_filter_section, discount_range_filters %} {% extends "templates/web.html" %} -{% block title %}{{ _('All Products') }}{% endblock %} +{% block title %}{{ _("All Products") }}{% endblock %} {% block header %} -
{{ _('All Products') }}
+
{{ _("All Products") }}
{% endblock header %} {% block page_content %} @@ -22,12 +22,12 @@ {% if field_filters %} - {{ field_filter_section(field_filters) }} + {{ _(field_filter_section(field_filters)) }} {% endif %} {% if attribute_filters %} - {{ attribute_filter_section(attribute_filters) }} + {{ _(attribute_filter_section(attribute_filters)) }} {% endif %}