From e5e558b456846262c571e3c005f996c2b9e5f42a Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 6 Jan 2019 21:31:03 +0530 Subject: [PATCH] Clarify how to use custom columns int he server custom book list template --- src/calibre/gui2/preferences/server.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/calibre/gui2/preferences/server.py b/src/calibre/gui2/preferences/server.py index 528d5fbeca..f3b87fe1ba 100644 --- a/src/calibre/gui2/preferences/server.py +++ b/src/calibre/gui2/preferences/server.py @@ -834,7 +834,8 @@ class CustomList(QWidget): # {{{ self.la1 = la = QLabel('

' + _( 'The template below will be interpreted as HTML and all {{fields}} will be replaced' - ' by the actual metadata, if available. You can use {0} as a separator' + ' by the actual metadata, if available. For custom columns use the column lookup' + ' name, for example: #mytags. You can use {0} as a separator' ' to split a line into multiple columns.').format('|||')) la.setWordWrap(True) l.addRow(la)