]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/templates/opac/pages/chunks/opac_search_bar.ttk
slowly evolving.
[Evergreen.git] / Open-ILS / src / templates / opac / pages / chunks / opac_search_bar.ttk
1 [%
2         # ---------------------------------------------------------------------------------             
3         # OPAC Search bar that appears at the top of each page
4         # Submission of the search calls the 'mr_basic_search()' function which expects a
5         # table called 'mr_results_table' to be available for population.
6         #
7         # if the 'js_only' variable is set to true, then the search form will do all of
8         # the work locally (javascript) instead of reloading the current page 
9         # --------------------------------------------------------------------------------- 
10         
11         # grab the textmap info for this page
12         tm = global.textmap.opac.search_bar;
13
14                 WRAPPER html/div id='opac_search_bar_box';
15
16                 WRAPPER html/table border='0' width='100%';
17                         WRAPPER html/row;
18
19                                 WRAPPER html/cell nowrap='nowrap' valign='middle' align='left';
20                                         INCLUDE opac/pages/chunks/search_bar_form.ttk;
21                                 END;
22
23
24                                 WRAPPER html/cell  align='center';
25                                         WRAPPER html/div class="text_link_div" id='adv_search_link_div';
26                                                 anchor( id='adv_search_link',  href='?target=advanced_search', text = tm.advanced );
27                                         END;
28                                 END;
29
30                                 WRAPPER html/cell  align='center';
31
32                                         WRAPPER html/div class='text_link_div' id='login_div';
33                                                 anchor( id='login_link',  href='?target=login', text = tm.login );
34                                         END;
35
36                                         WRAPPER html/div style="display:none;visibility:hidden" class='text_link_div' id='logout_div';
37                                                 anchor( id='logout_link',  href='?target=logout', text = tm.logout );
38                                         END;
39
40                                 END;
41
42                                 WRAPPER html/cell  align='center';
43                                         WRAPPER html/div class='text_link_div' id='my_opac_link_div';
44                                                 anchor( id='my_opac_link',  href='?target=my_opac', text = tm.my_opac );
45                                         END;
46                                 END;
47
48
49                                 WRAPPER html/cell  align='center';
50                                         WRAPPER html/div class='text_link_div' id='about_link_div';
51                                                 anchor( id='about_link', href='?target=about', text = tm.about );
52                                         END;
53                                 END;
54
55
56                                 WRAPPER html/cell valign='bottom' align='right';
57                                         WRAPPER html/div id='small_logo_div';
58                                                 WRAPPER html/anchor href=global.config.root_url;
59                                                         img(src = "/images/small_logo.jpg", border="0", width='30', height='30');
60                                                 END; # - anchor
61                                         END; # - div
62                                 END; # - cell   
63
64                                 cell( content = space(2) );
65
66                         END; # - row
67                 END; # - table
68         END; # - div
69
70 %]
71
72
73
74
75