Files
wger/docs/settings.rst
Roland Geider 05306b9123 Move EMAIL_FROM to WGER_SETTINGS dictionary
This makes the behaviour more consistent, as there are already application
specifig configurations there.
2015-12-03 23:10:11 +01:00

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.