add groups, tactics
This commit is contained in:
parent
2d183b959d
commit
d9672f65b8
2 changed files with 25 additions and 2 deletions
22
config.jsonc
22
config.jsonc
|
@ -185,6 +185,17 @@
|
||||||
"autocomplete": true,
|
"autocomplete": true,
|
||||||
"columnWidth": 256
|
"columnWidth": 256
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"id": "group",
|
||||||
|
"operator": "+",
|
||||||
|
"title": "Group",
|
||||||
|
"type": "string",
|
||||||
|
"filter": true,
|
||||||
|
"find": true,
|
||||||
|
"sort": true,
|
||||||
|
"autocomplete": true,
|
||||||
|
"columnWidth": 256
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"id": "publisher",
|
"id": "publisher",
|
||||||
"operator": "+",
|
"operator": "+",
|
||||||
|
@ -323,6 +334,17 @@
|
||||||
"autocomplete": true,
|
"autocomplete": true,
|
||||||
"columnWidth": 256
|
"columnWidth": 256
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"id": "tactics",
|
||||||
|
"operator": "+",
|
||||||
|
"title": "Tactics",
|
||||||
|
"type": ["string"],
|
||||||
|
"filter": true,
|
||||||
|
"find": true,
|
||||||
|
"sort": true,
|
||||||
|
"autocomplete": true,
|
||||||
|
"columnWidth": 256
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"id": "tags",
|
"id": "tags",
|
||||||
"operator": "+",
|
"operator": "+",
|
||||||
|
|
|
@ -229,10 +229,11 @@ pandora.ui.documentInfoView = function(data, isMixed) {
|
||||||
|
|
||||||
// Director, Year and Country ----------------------------------------------
|
// Director, Year and Country ----------------------------------------------
|
||||||
|
|
||||||
renderGroup(['author', 'date', 'format']);
|
renderGroup(['group', 'date', 'format']);
|
||||||
renderGroup(['publisher', 'place', 'series', 'volume', 'language']);
|
renderGroup(['author', 'publisher', 'place', 'series', 'volume', 'language']);
|
||||||
renderGroup(['source', 'links']);
|
renderGroup(['source', 'links']);
|
||||||
renderGroup(['movement', 'event', 'associatedgroups', 'relatedpeople']);
|
renderGroup(['movement', 'event', 'associatedgroups', 'relatedpeople']);
|
||||||
|
renderGroup(['tactics']);
|
||||||
renderGroup(['tags']);
|
renderGroup(['tags']);
|
||||||
|
|
||||||
// Description -------------------------------------------------------------
|
// Description -------------------------------------------------------------
|
||||||
|
|
Loading…
Reference in a new issue