Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

settings.rst 15KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543
  1. ==============
  2. Oscar settings
  3. ==============
  4. This is a comprehensive list of all the settings Oscar provides. All settings
  5. are optional.
  6. Display settings
  7. ================
  8. ``OSCAR_SHOP_NAME``
  9. -------------------
  10. Default: ``'Oscar'``
  11. The name of your e-commerce shop site. This is shown as the main logo within
  12. the default templates.
  13. ``OSCAR_SHOP_TAGLINE``
  14. ----------------------
  15. Default: ``''``
  16. The tagline that is displayed next to the shop name and in the browser title.
  17. ``OSCAR_HOMEPAGE``
  18. ------------------
  19. Default: ``reverse_lazy('promotions:home')``
  20. URL of home page of your site. This value is used for `Home` link in
  21. navigation and redirection page after logout. Useful if you use a different app
  22. to serve your homepage.
  23. ``OSCAR_ACCOUNTS_REDIRECT_URL``
  24. -------------------------------
  25. Default: ``'customer:profile-view'``
  26. Oscar has a view that gets called any time the user clicks on 'My account' or
  27. similar. By default it's a dumb redirect to the view configured with this
  28. setting. But you could also override the view to display a more useful
  29. account summary page or such like.
  30. ``OSCAR_RECENTLY_VIEWED_PRODUCTS``
  31. ----------------------------------
  32. Default: 20
  33. The number of recently viewed products to store.
  34. ``OSCAR_RECENTLY_VIEWED_COOKIE_LIFETIME``
  35. -----------------------------------------
  36. Default: 604800 (1 week in seconds)
  37. The time to live for the cookie in seconds.
  38. ``OSCAR_RECENTLY_VIEWED_COOKIE_NAME``
  39. -------------------------------------
  40. Default: ``'oscar_history'``
  41. The name of the cookie for showing recently viewed products.
  42. ``OSCAR_HIDDEN_FEATURES``
  43. -------------------------
  44. Defaults: ``[]``
  45. Allows to disable particular Oscar feature in application and templates.
  46. More information in the :doc:`/howto/how_to_disable_an_app_or_feature` document.
  47. Pagination
  48. ----------
  49. There are a number of settings that control pagination in Oscar's views. They
  50. all default to 20.
  51. - ``OSCAR_PRODUCTS_PER_PAGE``
  52. - ``OSCAR_OFFERS_PER_PAGE``
  53. - ``OSCAR_REVIEWS_PER_PAGE``
  54. - ``OSCAR_NOTIFICATIONS_PER_PAGE``
  55. - ``OSCAR_EMAILS_PER_PAGE``
  56. - ``OSCAR_ORDERS_PER_PAGE``
  57. - ``OSCAR_ADDRESSES_PER_PAGE``
  58. - ``OSCAR_STOCK_ALERTS_PER_PAGE``
  59. - ``OSCAR_DASHBOARD_ITEMS_PER_PAGE``
  60. .. _oscar_search_facets:
  61. ``OSCAR_SEARCH_FACETS``
  62. -----------------------
  63. A dictionary that specifies the facets to use with the search backend. It
  64. needs to be a dict with keys ``fields`` and ``queries`` for field- and
  65. query-type facets. Field-type facets can get an 'options' element with parameters like facet
  66. sorting, filtering, etc.
  67. The default is::
  68. OSCAR_SEARCH_FACETS = {
  69. 'fields': OrderedDict([
  70. ('product_class', {'name': _('Type'), 'field': 'product_class'}),
  71. ('rating', {'name': _('Rating'), 'field': 'rating'}),
  72. ]),
  73. 'queries': OrderedDict([
  74. ('price_range',
  75. {
  76. 'name': _('Price range'),
  77. 'field': 'price',
  78. 'queries': [
  79. # This is a list of (name, query) tuples where the name will
  80. # be displayed on the front-end.
  81. (_('0 to 20'), u'[0 TO 20]'),
  82. (_('20 to 40'), u'[20 TO 40]'),
  83. (_('40 to 60'), u'[40 TO 60]'),
  84. (_('60+'), u'[60 TO *]'),
  85. ]
  86. }),
  87. ]),
  88. }
  89. ``OSCAR_PRODUCT_SEARCH_HANDLER``
  90. --------------------------------
  91. The search handler to be used in the product list views. If ``None``,
  92. Oscar tries to guess the correct handler based on your Haystack settings.
  93. Default::
  94. None
  95. ``OSCAR_PROMOTION_POSITIONS``
  96. -----------------------------
  97. Default::
  98. OSCAR_PROMOTION_POSITIONS = (('page', 'Page'),
  99. ('right', 'Right-hand sidebar'),
  100. ('left', 'Left-hand sidebar'))
  101. The choice of display locations available when editing a promotion. Only
  102. useful when using a new set of templates.
  103. .. _OSCAR_DASHBOARD_NAVIGATION:
  104. ``OSCAR_DASHBOARD_NAVIGATION``
  105. ------------------------------
  106. Default: see ``oscar.defaults`` (too long to include here).
  107. A list of dashboard navigation elements. Usage is explained in
  108. :doc:`/howto/how_to_configure_the_dashboard_navigation`.
  109. ``OSCAR_DASHBOARD_DEFAULT_ACCESS_FUNCTION``
  110. -------------------------------------------
  111. Default: ``'oscar.apps.dashboard.nav.default_access_fn'``
  112. ``OSCAR_DASHBOARD_NAVIGATION`` allows passing an access function for each node
  113. which is used to determine whether to show the node for a specific user or not.
  114. If no access function is defined, the function specified here is used.
  115. The default function integrates with the permission-based dashboard and shows
  116. the node if the user will be able to access it. That should be sufficient for
  117. most cases.
  118. Order settings
  119. ==============
  120. ``OSCAR_INITIAL_ORDER_STATUS``
  121. ------------------------------
  122. The initial status used when a new order is submitted. This has to be a status
  123. that is defined in the ``OSCAR_ORDER_STATUS_PIPELINE``.
  124. ``OSCAR_INITIAL_LINE_STATUS``
  125. -----------------------------
  126. The status assigned to a line item when it is created as part of an new order. It
  127. has to be a status defined in ``OSCAR_LINE_STATUS_PIPELINE``.
  128. ``OSCAR_ORDER_STATUS_PIPELINE``
  129. -------------------------------
  130. Default: ``{}``
  131. The pipeline defines the statuses that an order or line item can have and what
  132. transitions are allowed in any given status. The pipeline is defined as a
  133. dictionary where the keys are the available statuses. Allowed transitions are
  134. defined as iterable values for the corresponding status.
  135. A sample pipeline (as used in the Oscar sandbox) might look like this::
  136. OSCAR_INITIAL_ORDER_STATUS = 'Pending'
  137. OSCAR_INITIAL_LINE_STATUS = 'Pending'
  138. OSCAR_ORDER_STATUS_PIPELINE = {
  139. 'Pending': ('Being processed', 'Cancelled',),
  140. 'Being processed': ('Processed', 'Cancelled',),
  141. 'Cancelled': (),
  142. }
  143. ``OSCAR_ORDER_STATUS_CASCADE``
  144. ------------------------------
  145. This defines a mapping of status changes for order lines which 'cascade' down
  146. from an order status change.
  147. For example::
  148. OSCAR_ORDER_STATUS_CASCADE = {
  149. 'Being processed': 'In progress'
  150. }
  151. With this mapping, when an order has it's status set to 'Being processed', all
  152. lines within it have their status set to 'In progress'. In a sense, the status
  153. change cascades down to the related objects.
  154. Note that this cascade ignores restrictions from the
  155. ``OSCAR_LINE_STATUS_PIPELINE``.
  156. ``OSCAR_LINE_STATUS_PIPELINE``
  157. ------------------------------
  158. Default: ``{}``
  159. Same as ``OSCAR_ORDER_STATUS_PIPELINE`` but for lines.
  160. Checkout settings
  161. =================
  162. ``OSCAR_ALLOW_ANON_CHECKOUT``
  163. -----------------------------
  164. Default: ``False``
  165. Specifies if an anonymous user can buy products without creating an account
  166. first. If set to ``False`` users are required to authenticate before they can
  167. checkout (using Oscar's default checkout views).
  168. ``OSCAR_REQUIRED_ADDRESS_FIELDS``
  169. ---------------------------------
  170. Default: ``('first_name', 'last_name', 'line1', 'line4', 'postcode', 'country')``
  171. List of form fields that a user has to fill out to validate an address field.
  172. Review settings
  173. ===============
  174. ``OSCAR_ALLOW_ANON_REVIEWS``
  175. ----------------------------
  176. Default: ``True``
  177. This setting defines whether an anonymous user can create a review for
  178. a product without registering first. If it is set to ``True`` anonymous
  179. users can create product reviews.
  180. ``OSCAR_MODERATE_REVIEWS``
  181. --------------------------
  182. Default: ``False``
  183. This defines whether reviews have to be moderated before they are publicly
  184. available. If set to ``False`` a review created by a customer is immediately
  185. visible on the product page.
  186. Communication settings
  187. ======================
  188. ``OSCAR_EAGER_ALERTS``
  189. ----------------------
  190. Default: ``True``
  191. This enables sending alert notifications/emails instantly when products get
  192. back in stock by listening to stock record update signals this might impact
  193. performance for large numbers stock record updates.
  194. Alternatively, the management command ``oscar_send_alerts`` can be used to
  195. run periodically, e.g. as a cronjob. In this case instant alerts should be
  196. disabled.
  197. ``OSCAR_SEND_REGISTRATION_EMAIL``
  198. ---------------------------------
  199. Default: ``True``
  200. Sending out *welcome* messages to a user after they have registered on the
  201. site can be enabled or disabled using this setting. Setting it to ``True``
  202. will send out emails on registration.
  203. ``OSCAR_FROM_EMAIL``
  204. --------------------
  205. Default: ``oscar@example.com``
  206. The email address used as the sender for all communication events and emails
  207. handled by Oscar.
  208. ``OSCAR_STATIC_BASE_URL``
  209. -------------------------
  210. Default: ``None``
  211. A URL which is passed into the templates for communication events. It is not
  212. used in Oscar's default templates but could be used to include static assets
  213. (eg images) in a HTML email template.
  214. Offer settings
  215. ==============
  216. ``OSCAR_OFFER_ROUNDING_FUNCTION``
  217. ---------------------------------
  218. Default: Round down to the nearest hundredth of a unit using ``decimal.Decimal.quantize``
  219. A function responsible for rounding decimal amounts when offer discount
  220. calculations don't lead to legitimate currency values.
  221. ``OSCAR_OFFERS_INCL_TAX``
  222. Default: ``False``
  223. If ``True``, offers will be applied to prices including taxes instead of on
  224. prices excluding tax. Oscar used to always calculate offers on prices excluding
  225. tax so the default is ``False``. This setting also affects the meaning of
  226. absolute prices in offers. So a flat discount of 10 pounds in an offer will
  227. be treated as 10 pounds before taxes if ``OSCAR_OFFERS_INCL_TAX`` remains
  228. ``False`` and 10 pounds after taxes if ``OSCAR_OFFERS_INCL_TAX`` is set to
  229. ``True``.
  230. Basket settings
  231. ===============
  232. ``OSCAR_BASKET_COOKIE_LIFETIME``
  233. --------------------------------
  234. Default: 604800 (1 week in seconds)
  235. The time to live for the basket cookie in seconds.
  236. ``OSCAR_MAX_BASKET_QUANTITY_THRESHOLD``
  237. ---------------------------------------
  238. Default: ``10000``
  239. The maximum number of products that can be added to a basket at once. Set to
  240. ``None`` to disable the basket treshold limitation.
  241. ``OSCAR_BASKET_COOKIE_OPEN``
  242. ----------------------------
  243. Default: ``'oscar_open_basket'``
  244. The name of the cookie for the open basket.
  245. Currency settings
  246. =================
  247. ``OSCAR_DEFAULT_CURRENCY``
  248. --------------------------
  249. Default: ``GBP``
  250. This should be the symbol of the currency you wish Oscar to use by default.
  251. This will be used by the currency templatetag.
  252. .. _currency-format-setting:
  253. ``OSCAR_CURRENCY_FORMAT``
  254. -------------------------
  255. Default: ``None``
  256. Dictionary with arguments for the ``format_currency`` function from the `Babel library`_.
  257. Contains next options: `format`, `format_type`, `currency_digits`.
  258. For example::
  259. OSCAR_CURRENCY_FORMAT = {
  260. 'USD': {
  261. 'currency_digits': False,
  262. 'format_type': "accounting",
  263. },
  264. 'EUR': {
  265. 'format': u'#,##0\xa0¤',
  266. }
  267. }
  268. .. _`Babel library`: http://babel.pocoo.org/en/latest/api/numbers.html#babel.numbers.format_currency
  269. Upload/media settings
  270. =====================
  271. ``OSCAR_IMAGE_FOLDER``
  272. ----------------------
  273. Default: ``images/products/%Y/%m/``
  274. The location within the ``MEDIA_ROOT`` folder that is used to store product images.
  275. The folder name can contain date format strings as described in the `Django Docs`_.
  276. .. _`Django Docs`: https://docs.djangoproject.com/en/stable/ref/models/fields/#filefield
  277. ``OSCAR_DELETE_IMAGE_FILES``
  278. ----------------------------
  279. Default: ``True``
  280. If enabled, a ``post_delete`` hook will attempt to delete any image files and
  281. created thumbnails when a model with an ``ImageField`` is deleted. This is
  282. usually desired, but might not be what you want when using a remote storage.
  283. ``OSCAR_PROMOTION_FOLDER``
  284. --------------------------
  285. Default: ``images/promotions/``
  286. The folder within ``MEDIA_ROOT`` used for uploaded promotion images.
  287. .. _missing-image-label:
  288. ``OSCAR_MISSING_IMAGE_URL``
  289. ---------------------------
  290. Default: ``image_not_found.jpg``
  291. Copy this image from ``oscar/static/img`` to your ``MEDIA_ROOT`` folder. It needs to
  292. be there so Sorl can resize it.
  293. ``OSCAR_UPLOAD_ROOT``
  294. ---------------------
  295. Default: ``/tmp``
  296. The folder is used to temporarily hold uploaded files until they are processed.
  297. Such files should always be deleted afterwards.
  298. Slug settings
  299. =============
  300. ``OSCAR_SLUG_FUNCTION``
  301. -----------------------
  302. Default: ``'oscar.core.utils.default_slugifier'``
  303. A dotted path to the slugify function to use.
  304. Example::
  305. # in myproject.utils
  306. def some_slugify(value, allow_unicode=False):
  307. return value
  308. # in settings.py
  309. OSCAR_SLUG_FUNCTION = 'myproject.utils.some_slugify'
  310. ``OSCAR_SLUG_MAP``
  311. ------------------
  312. Default: ``{}``
  313. A dictionary to target:replacement strings that the slugify will apply before
  314. slugifying the value. This is useful when names contain characters which would
  315. normally be stripped. For instance::
  316. OSCAR_SLUG_MAP = {
  317. 'c++': 'cpp',
  318. 'f#': 'fsharp',
  319. }
  320. ``OSCAR_SLUG_BLACKLIST``
  321. ------------------------
  322. Default: ``[]``
  323. An iterable of words the slugify will try to remove after the value has been
  324. slugified. Note, a word will not be removed from the slug if it would
  325. result in an empty slug.
  326. Example::
  327. # With OSCAR_SLUG_BLACKLIST = ['the']
  328. slugify('The cat')
  329. > 'cat'
  330. # With OSCAR_SLUG_BLACKLIST = ['the', 'cat']
  331. slugify('The cat')
  332. > 'cat'
  333. ``OSCAR_SLUG_ALLOW_UNICODE``
  334. ----------------------------
  335. Default: ``False``
  336. Allows unicode characters in slugs generated by ``AutoSlugField``,
  337. which is supported by the underlying ``SlugField`` in Django>=1.9.
  338. Dynamic importer settings
  339. =========================
  340. ``OSCAR_DYNAMIC_CLASS_LOADER``
  341. ----------------------------------
  342. Default: ``oscar.core.loading.default_class_loader``
  343. A dotted path to the callable used to dynamically import classes.
  344. Misc settings
  345. =============
  346. ``OSCAR_COOKIES_DELETE_ON_LOGOUT``
  347. ----------------------------------
  348. Default: ``['oscar_recently_viewed_products',]``
  349. Which cookies to delete automatically when the user logs out.
  350. ``OSCAR_GOOGLE_ANALYTICS_ID``
  351. -----------------------------
  352. Tracking ID for Google Analytics tracking code, available as `google_analytics_id` in the template
  353. context. If setting is set, enables Universal Analytics tracking code for page views and
  354. transactions.
  355. ``OSCAR_USE_LESS``
  356. ------------------
  357. Allows to use raw LESS styles directly. Refer to :ref:`less-css` document for more details.
  358. ``OSCAR_CSV_INCLUDE_BOM``
  359. -------------------------
  360. Default: ``False``
  361. A flag to control whether Oscar's CSV writer should prepend a byte order mark
  362. (BOM) to CSV files that are encoded in UTF-8. Useful for compatibility with some
  363. CSV readers, Microsoft Excel in particular.