]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/templates/opac/pages/record_result.ttk
3b80dca6e70296104804b0902ee3d42ac5c3e8a4
[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                         #WRAPPER html/div id='page_trail';END;
21
22
23                         # --------------------------------------------------------------------------------- 
24                         # search results are spit out into this table
25                         # --------------------------------------------------------------------------------- 
26                         box(id="did_you_mean_box", style="margin-left:20px;width:100%;text-align:left");
27
28                         WRAPPER html/table class='big_ol_box' id='big_ol_box';
29
30
31                                 WRAPPER html/row;
32
33                                         WRAPPER html/cell class='record_result_cell';
34                                                 WRAPPER html/table class='record_result_box', id='record_result_box'; 
35                                                         WRAPPER html/thead class='record_result_thead'; 
36                                                                 WRAPPER html/row id='record_result_thead_row';
37                                                                                 cell(nowrap='nowrap', colspan='2', 
38                                                                                         #content="Title / Author", class='record_box_descriptor' ); 
39                                                                                         content=" ", class='record_box_descriptor' ); 
40                                                                 END;
41                                                         END;
42                                                 END;
43
44                                         END;
45
46
47                                         WRAPPER html/cell class='record_sidebar_cell' id='record_sidebar_cell' valign="top";
48                                                 box( id='record_sidebar_box' );
49                                         END;
50
51                                 END;
52
53                                 WRAPPER html/row id='hourglass_row';
54                                         cell(style="text-align:center", content=img(src="http://www.filleacgil.it/Animate/book_b.gif"));
55                                 END;
56
57                                 
58                         END;
59
60                         lines(2);
61                         WRAPPER html/div class='hit_count_cell' id='hit_count_cell_2';
62                         END;
63                         lines(1);
64
65                         INCLUDE opac/pages/chunks/org_tree.ttk;
66
67                 END; # body
68
69         END; # html
70
71 %]
72