You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

defaults.py 495B

123456789101112131415161718
  1. # Basket settings
  2. OSCAR_BASKET_COOKIE_LIFETIME = 7*24*60*60
  3. OSCAR_BASKET_COOKIE_OPEN = 'oscar_open_basket'
  4. OSCAR_BASKET_COOKIE_SAVED = 'oscar_saved_basket'
  5. # Currency
  6. OSCAR_DEFAULT_CURRENCY = 'GBP'
  7. # Max number of products to keep on the user's history
  8. OSCAR_RECENTLY_VIEWED_PRODUCTS = 4
  9. # Image paths
  10. OSCAR_IMAGE_FOLDER = 'images/products/%Y/%m/'
  11. OSCAR_BANNER_FOLDER = 'images/promotions/banners'
  12. OSCAR_POD_FOLDER = 'images/promotions/pods'
  13. # Search settings
  14. OSCAR_SEARCH_SUGGEST_LIMIT = 10