# Copyright 2026 - Today Criptomart # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl) from odoo import fields from odoo import models class ResConfigSettings(models.TransientModel): _inherit = "res.config.settings" # Per website: a shop with a handful of products may keep the pager while # a catalog with thousands of them loads on demand. shop_lazy_loading = fields.Selection( related="website_id.shop_lazy_loading", readonly=False, )