mirror of
https://github.com/wger-project/wger.git
synced 2026-02-18 00:17:51 +01:00
This makes the behaviour more consistent, as there are already application specifig configurations there.
31 lines
1.1 KiB
ReStructuredText
31 lines
1.1 KiB
ReStructuredText
.. _settings:
|
|
|
|
Settings
|
|
========
|
|
|
|
You can configure some of the application behaviour with the ``WGER_SETTINGS``
|
|
dictionary in your settings file. Currently the following options are supported:
|
|
|
|
**ALLOW_REGISTRATION**: Default ``True``.
|
|
Controls whether users can register on their own or if a gym adminstrator has
|
|
to create the user accounts.
|
|
|
|
**USE_RECAPTCHA**: Default ``False``.
|
|
Controls whether a captcha challenge will be presented when new users register.
|
|
|
|
**REMOVE_WHITESPACE**: Default ``False``.
|
|
Removes whitespaces around HTML tags to reduce the size of the resulting HTML.
|
|
If you are not serving the site using TLS you probably want to use the GZip
|
|
middleware instead. Read the django documentation on the security implications
|
|
(BREACH attack).
|
|
|
|
**EMAIL_FROM**: Default `wger Workout Manager <wger@example.com>`
|
|
The sender address used for sent emails by the system such as weight reminders
|
|
|
|
|
|
.. note::
|
|
If you want to override a default setting, don't overwrite all the dictionary
|
|
but only the keys you need, e.g. ``WGER_SETTINGS['foo'] = 'bar'``. This avoids
|
|
problems when new keys are added in the global settings.
|
|
|