]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/templates/opac/pages/chunks/opac_search_bar.ttk
new layout. there is now a top level iframe in the opac that holds the
[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';
24                                 END;
25
26                                 WRAPPER html/cell  align='center';
27                                         WRAPPER html/div class="text_link_div" id='adv_search_link_div';
28                                                 anchor( id='adv_search_link',  href='?target=advanced_search', text = tm.advanced );
29                                         END;
30                                 END;
31
32                                 WRAPPER html/cell  align='center';
33                                         WRAPPER html/div class='text_link_div' id='login_div';
34                                                 anchor( id='login_link',  href='?target=login', text = tm.login );
35                                         END;
36                                         WRAPPER html/div class='text_link_div' id='logout_div';
37                                                 anchor( id='logout_link',  href='?target=logout', text = tm.logout );
38                                         END;
39                                 END;
40
41                                 WRAPPER html/cell  align='center';
42                                         WRAPPER html/div class='text_link_div' id='my_opac_link_div';
43                                                 anchor( id='my_opac_link',  href='?target=my_opac', text = tm.my_opac );
44                                         END;
45                                 END;
46
47
48                                 WRAPPER html/cell  align='center';
49                                         WRAPPER html/div class='text_link_div' id='about_link_div';
50                                                 anchor( id='about_link', href='?target=about', text = tm.about );
51                                         END;
52                                 END;
53
54
55                                 WRAPPER html/cell valign='bottom' align='right';
56                                         WRAPPER html/div id='small_logo_div';
57                                                 WRAPPER html/anchor href=global.config.root_url;
58                                                         img(src = "/images/small_logo.jpg", border="0", width='30', height='30');
59                                                 END; # - anchor
60                                         END; # - div
61                                 END; # - cell   
62
63                                 cell( content = space(2) );
64
65                         END; # - row
66                 END; # - table
67         END; # - div
68
69 %]
70
71
72
73
74