]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/templates/opac/pages/chunks/adv_refined_keyword.ttk
removing old opac images and css
[Evergreen.git] / Open-ILS / src / templates / opac / pages / chunks / adv_refined_keyword.ttk
1 [%
2
3         WRAPPER html/div id='adv_refined_search_div' class='adv_search_chunk_box';
4
5                 WRAPPER html/div class='adv_search_header';
6                         "Refined Search";;
7                 END;
8
9                 WRAPPER html/div class='adv_dashed_box';
10
11                         WRAPPER html/table;
12         
13                                 row(content = cell(content = lines(1)));
14
15                                 WRAPPER html/row;
16                                 cell(align='left', content="Search Type");
17                                 WRAPPER html/cell align='left';
18                                         WRAPPER html/select name='adv_search_type' id='adv_search_type';
19                                                 option(value='title',   content="Title");
20                                                 option(value='author',  content="Author");
21                                                 option(value='subject', content="Subject");
22                                                 option(value='keyword', selected='selected', content="Keyword");
23                                                 option(value='series',  content="Series");
24                                         END;
25                                 END;
26                                 END;
27
28                                 row(content = cell(content = lines(1)));
29         
30                                 WRAPPER html/row;
31                                         cell(align='left' , content= "Find results with all words:");
32                                         cell(align='left' , content=input(type='text' size='34' id='adv_all_words'));
33                                 END;
34         
35                                 row(content = cell(content = lines(1)));
36         
37                                 WRAPPER html/row;
38                                         cell(align='left' content= "Find results with the exact phrase:");
39                                         cell(align='left' content=input(type='text' size='34' id='adv_exact_words'));
40                                 END;
41         
42                                 row(content = cell(content = lines(1)));
43         
44                                 WRAPPER html/row;
45                                         cell(align='left' content= "Find results with none of these words:");
46                                         cell(align='left' content=input(type='text' size='34' id='adv_none_words'));
47                                 END;
48         
49                                 row(content = cell(content = lines(1)));
50         
51                                 WRAPPER html/row;
52                                         WRAPPER html/cell colspan='4';
53                                                 WRAPPER html/center;
54                                                         input( type='submit', value='Search', id="adv_search_refined_submit"); 
55                                                 END;
56                                         END;
57                                 END;
58         
59                         END; # table 
60                 END; # table 
61
62         END; # div
63
64 %]