Examples for the fields settings

This commit is contained in:
Kovid Goyal 2017-05-19 06:44:31 +05:30
parent d48c1d4eff
commit c9790b3a5e
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -157,13 +157,15 @@ raw_options = (
_('Ignored user-defined metadata fields'),
'ignored_fields', None,
_('Comma separated list of user-defined metadata fields that will not be displayed'
' by the Content server in the /opds and /mobile views.'),
' by the Content server in the /opds and /mobile views. For example: {}').format(
'my_rating,my_tags'),
_('Restrict displayed user-defined fields'),
'displayed_fields', None,
_('Comma separated list of user-defined metadata fields that will be displayed'
' by the Content server in the /opds and /mobile views. If you specify this'
' option, any fields not in this list will not be displayed.'),
' option, any fields not in this list will not be displayed. For example: {}').format(
'my_rating,my_tags'),
)