]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/templates/opac/pages/record_detail.ttk
removing old opac images and css
[working/Evergreen.git] / Open-ILS / src / templates / opac / pages / record_detail.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 Detail Page";
11                         INCLUDE opac/pages/chunks/css_includes.ttk;
12                 END;
13
14
15
16                 WRAPPER html/body onload='pageInit();';
17
18                         INCLUDE opac/pages/chunks/body_header.ttk hide_hits_per=1;
19                         #WRAPPER html/div id='page_trail';END;
20
21                         # --------------------------------------------------------------------------------- 
22                         # Display record detail info
23                         # --------------------------------------------------------------------------------- 
24
25                         WRAPPER html/box id='record_detail_main_box';
26
27                                 WRAPPER html/box id='detail_items_div';
28
29                                 WRAPPER html/table width="100%";
30                                         WRAPPER html/row;
31                                                 WRAPPER html/cell width="70%";
32                                                         WRAPPER html/table id='record_detail_table';
33                 
34                                                                 WRAPPER html/row;
35                                                                         cell(content="Record Details", nowrap='nowrap', class="detail_header_cell");
36                                                                         cell(id='record_detail_view_marc', class="detail_header_cell");
37                                                                         cell(id='record_detail_pic_cell', rowspan='10');
38                                                                 END;
39
40         
41                                                                 WRAPPER html/row class='detail_item_row';
42                                                                         cell(content="Title", nowrap='nowrap', class='detail_item_label');
43                                                                         cell(id='record_detail_title_cell');
44                                                                 END;
45                         
46                                                                 WRAPPER html/row class='detail_item_row';
47                                                                         cell(content="Author", class='detail_item_label');
48                                                                         cell(id='record_detail_author_cell');
49                                                                 END;
50                         
51                                                                 WRAPPER html/row class='detail_item_row';
52                                                                         cell(content="ISBN", class='detail_item_label');
53                                                                         cell(id='record_detail_isbn_cell');
54                                                                 END;
55                         
56                                                                 WRAPPER html/row class='detail_item_row';
57                                                                         cell(content="Edition", class='detail_item_label');
58                                                                         cell(id='record_detail_edition_cell');
59                                                                 END;
60                         
61                                                                 WRAPPER html/row class='detail_item_row';
62                                                                         cell(content="Publication Date", class='detail_item_label');
63                                                                         cell(id='record_detail_pubdate_cell');
64                                                                 END;
65                         
66                                                                 WRAPPER html/row class='detail_item_row';
67                                                                         cell(content="Publisher", class='detail_item_label');
68                                                                         cell(id='record_detail_publisher_cell');
69                                                                 END;
70                         
71                                                                 WRAPPER html/row class='detail_item_row';
72                                                                         cell(content="Title Control Number", nowrap='nowrap', class='detail_item_label');
73                                                                         cell(id='record_detail_tcn_cell');
74                                                                 END;
75                         
76                                                                 WRAPPER html/row class='detail_item_row';
77                                                                         cell(content="Type of Resource", class='detail_item_label');
78                                                                         cell(id='record_detail_resource_cell');
79                                                                 END;
80                         
81                                                                 WRAPPER html/row class='detail_item_row';
82                                                                         cell(content="Subjects", class='detail_item_label');
83                                                                         cell(id='record_detail_subject_cell');
84                                                                 END;
85
86                                                                 WRAPPER html/row class='detail_item_row';
87                                                                         cell(content="Abstract", class='detail_item_label');
88                                                                         cell(id='record_detail_abstract_cell');
89                                                                 END;
90
91                                                         END; # table
92                                                 END;
93                 
94                                                 WRAPPER html/cell valign='top' width="30%";
95                                                         box(id='main_page_nav_box', style="width:200px; float:right;");
96                                                 END;
97
98                                         END; #row
99                                 END; # table
100
101                         END; # detail_items_div
102
103
104                         END;
105
106                         lines(1);
107                         box(id='record_detail_copy_info');
108
109                                                 
110                         INCLUDE opac/pages/chunks/org_tree.ttk;
111                 END; # body
112
113         END; # html
114
115 %]
116