| 123456789101112131415161718 |
- # Basket settings
- OSCAR_BASKET_COOKIE_LIFETIME = 7*24*60*60
- OSCAR_BASKET_COOKIE_OPEN = 'oscar_open_basket'
- OSCAR_BASKET_COOKIE_SAVED = 'oscar_saved_basket'
-
- # Currency
- OSCAR_DEFAULT_CURRENCY = 'GBP'
-
- # Max number of products to keep on the user's history
- OSCAR_RECENTLY_VIEWED_PRODUCTS = 4
-
- # Image paths
- OSCAR_IMAGE_FOLDER = 'images/products/%Y/%m/'
- OSCAR_BANNER_FOLDER = 'images/promotions/banners'
- OSCAR_POD_FOLDER = 'images/promotions/pods'
-
- # Search settings
- OSCAR_SEARCH_SUGGEST_LIMIT = 10
|