]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/templates/opac/pages/chunks/opac_search_bar.ttk
periodic pile of updates
[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 valign='middle' align='left';
20                                         INCLUDE opac/pages/chunks/search_bar_form.ttk;
21                                 END;
22
23                                 #WRAPPER html/cell  id='progress_bar' align='center'; END;
24
25                                 WRAPPER html/cell  align='center';
26                                         WRAPPER html/div class="text_link_div" id='adv_search_link_div';
27                                                 anchor( id='adv_search_link',  href='?target=advanced_search', text = tm.advanced );
28                                         END;
29                                 END;
30
31                                 WRAPPER html/cell  align='center';
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                                         WRAPPER html/div style="display:none;visibility:hidden" class='text_link_div' id='logout_div';
36                                                 anchor( id='logout_link',  href='?target=logout', text = tm.logout );
37                                         END;
38                                 END;
39
40                                 WRAPPER html/cell  align='center';
41                                         WRAPPER html/div class='text_link_div' id='my_opac_link_div';
42                                                 anchor( id='my_opac_link',  href='?target=my_opac', text = tm.my_opac );
43                                         END;
44                                 END;
45
46
47                                 WRAPPER html/cell  align='center';
48                                         WRAPPER html/div class='text_link_div' id='about_link_div';
49                                                 anchor( id='about_link', href='?target=about', text = tm.about );
50                                         END;
51                                 END;
52
53
54                                 WRAPPER html/cell valign='bottom' align='right';
55                                         WRAPPER html/div id='small_logo_div';
56                                                 WRAPPER html/anchor href=global.config.root_url;
57                                                         img(src = "/images/small_logo.jpg", border="0", width='30', height='30');
58                                                 END; # - anchor
59                                         END; # - div
60                                 END; # - cell   
61
62                                 cell( content = space(2) );
63
64                         END; # - row
65                 END; # - table
66         END; # - div
67
68 %]
69
70
71
72
73