-
Notifications
You must be signed in to change notification settings - Fork 3
/
searchForm.json
50 lines (50 loc) · 1.66 KB
/
searchForm.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{ "action": "/find/",
"method": "get",
"controls": [
{ "label": "_(Search for|label for search box)",
"name" : "search",
"input": true,
"type": "search",
"description": "_(Enter text to search|placeholder text for search box)"
},
{ "label": "_(Topics|pulldown label)",
"name": "category",
"select": true,
"options": [
{ "label": "_(All Topics)", "value": "" }
]
},
{ "label": "_(Review status|pulldown label)",
"name": "reviewed",
"select": true,
"options": [
{ "label": "_(Reviewed only)", "value": "R" },
{ "label": "_(Include unreviewed)", "value": "" }
]
},
{ "label": "_(Audience|pulldown label for audience ratings)",
"name": "audience",
"select": true,
"options": [
{ "label": "_(Rated E/Everybody|books appropriate for everyone)", "value": "E" },
{ "label": "_(Rated C/Caution|books that may not be appropriate for all readers)", "value": "C" },
{ "label": "_(Any rating|selection to ignore the audience rating)", "value": "" }
]
},
{ "label": "_(Language)",
"name": "language",
"select": true,
"options": [
]
},
{ "name": "page",
"input": true,
"type": "hidden",
"value": 1
},
{ "input": true,
"type": "submit",
"value": "_(Search|button label)"
}
]
}