]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/templates/opac/pages/record_result.ttk
onward and upward
[Evergreen.git] / Open-ILS / src / templates / opac / pages / record_result.ttk
1 [%
2
3         # --------------------------------------------------------------------------------- 
4         # This page will display a list of metarecord search results
5         # --------------------------------------------------------------------------------- 
6         tm = global.textmap.opac.mr_result;
7
8         WRAPPER html/html;
9
10                 WRAPPER html/head title="Record Result Page";
11                         INCLUDE opac/pages/chunks/css_includes.ttk;
12                 END;
13
14
15
16                 WRAPPER html/body onload='pageInit(); globalPage.doSearch();';
17
18                         INCLUDE opac/pages/chunks/body_header.ttk;
19
20
21                         # --------------------------------------------------------------------------------- 
22                         # search results are spit out into this table
23                         # --------------------------------------------------------------------------------- 
24                         WRAPPER html/table class='big_ol_box' id='big_ol_box';
25
26
27                                 WRAPPER html/row;
28
29                                         WRAPPER html/cell class='record_result_cell';
30                                                 WRAPPER html/table class='record_result_box', id='record_result_box'; 
31                                                         WRAPPER html/thead class='record_result_thead'; 
32                                                                 WRAPPER html/row id='record_result_thead_row';
33                                                                         cell(nowrap='nowrap', colspan='2' ); 
34                                                                 END;
35                                                         END;
36                                                 END;
37
38                                         END;
39
40
41                                         WRAPPER html/cell class='record_sidebar_cell' id='record_sidebar_cell' valign="top";
42                                                 box( id='record_sidebar_box' );
43                                         END;
44
45                                 END;
46
47                                 
48                         END;
49
50                 END; # body
51
52         END; # html
53
54 %]
55