add timeofday
This commit is contained in:
parent
7218c3f220
commit
2742df5221
2 changed files with 13 additions and 3 deletions
14
config.jsonc
14
config.jsonc
|
@ -147,6 +147,16 @@
|
||||||
"find": true,
|
"find": true,
|
||||||
"sort": true
|
"sort": true
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"id": "timeofday",
|
||||||
|
"title": "Time of Day",
|
||||||
|
"type": "string",
|
||||||
|
"autocomplete": true,
|
||||||
|
"columnWidth": 180,
|
||||||
|
"filter": true,
|
||||||
|
"find": true,
|
||||||
|
"sort": true
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"id": "date",
|
"id": "date",
|
||||||
"title": "Date",
|
"title": "Date",
|
||||||
|
@ -516,7 +526,7 @@
|
||||||
"posters": {
|
"posters": {
|
||||||
"ratio": 0.625
|
"ratio": 0.625
|
||||||
},
|
},
|
||||||
"rightsLevel": {"member": 2, "staff": 2, "admin": 2},
|
"rightsLevel": {"member": 2, "staff": 0, "admin": 0},
|
||||||
"rightsLevels": [
|
"rightsLevels": [
|
||||||
{"name": "Public", "color": [128, 255, 128]},
|
{"name": "Public", "color": [128, 255, 128]},
|
||||||
{"name": "Restricted", "color": [255, 192, 128]},
|
{"name": "Restricted", "color": [255, 192, 128]},
|
||||||
|
@ -616,7 +626,7 @@
|
||||||
{"id": "category", "sort": [{"key": "name", "operator": "+"}]},
|
{"id": "category", "sort": [{"key": "name", "operator": "+"}]},
|
||||||
{"id": "tag", "sort": [{"key": "items", "operator": "-"}]},
|
{"id": "tag", "sort": [{"key": "items", "operator": "-"}]},
|
||||||
{"id": "keywords", "sort": [{"key": "items", "operator": "-"}]},
|
{"id": "keywords", "sort": [{"key": "items", "operator": "-"}]},
|
||||||
{"id": "name", "sort": [{"key": "items", "operator": "-"}]}
|
{"id": "timeofday", "sort": [{"key": "items", "operator": "-"}]}
|
||||||
],
|
],
|
||||||
"filtersSize": 176,
|
"filtersSize": 176,
|
||||||
"find": {"conditions": [], "operator": "&"},
|
"find": {"conditions": [], "operator": "&"},
|
||||||
|
|
|
@ -298,7 +298,7 @@ pandora.ui.infoView = function(data) {
|
||||||
|
|
||||||
// Groups ------------------------------------------------------------------
|
// Groups ------------------------------------------------------------------
|
||||||
|
|
||||||
renderGroup(['location', 'date', 'language']);
|
renderGroup(['location', 'date', 'timeofday', 'language']);
|
||||||
|
|
||||||
renderGroup(['category', 'name']);
|
renderGroup(['category', 'name']);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue