]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/web/opac/skin/default/xml/rdetail.xml
record details work
[Evergreen.git] / Open-ILS / web / opac / skin / default / xml / rdetail.xml
1 <?xml version='1.0'?>
2 <!DOCTYPE x [ <!ENTITY % ent SYSTEM "../../../locale/en-US/lang.dtd"> %ent; ] >
3
4 <html xmlns="http://www.w3.org/1999/xhtml" 
5         xmlns:xi="http://www.w3.org/2001/XInclude" xml:lang="en" lang="en">
6
7         <head>
8                 <title>Evergreen: Titles</title>
9                 <xi:include href="css_common.xml#xpointer(//link)"/>
10                 <xi:include href="js_common.xml#xpointer(//script)"/>
11                 <script language='javascript' src='../js/rdetail.js'> </script>
12         </head>
13
14         <body onload="init();">
15                 <xi:include href="header.xml"/> 
16                 <div id='canvas' class='canvas'>
17                         <xi:include href="altcanvas.xml"/>
18
19                         <div id='canvas_main'>
20
21                                 <div>
22                                         <div class='rdetail_header color_1'>
23                                                 <span>&rdetail.detailMain.headerLabel;</span>
24                                         </div>
25
26                                         <!-- This holds the basic user friendly record information, e.g. title, author, etc. -->
27                                         <div>
28                                                 <table id='rdetail_details_table'>
29                                                         <tbody id='rdetail_details_tbody'>
30
31                                                                 <tr>
32                                                                         <td id='rdetail_image_cell' rowspan='8'><img id='rdetail_image'> </img></td>
33                                                                         <td nowrap='nowrap' class='rdetail_desc'>&rdetail.detailMain.title;</td>                
34                                                                         <td class='rdetail_item' id='rdetail_title'> </td>
35                                                                 </tr>
36
37                                                                 <tr>
38                                                                         <td nowrap='nowrap' class='rdetail_desc'>&rdetail.detailMain.author;</td>               
39                                                                         <td class='rdetail_item' id='rdetail_author'> </td>
40                                                                 </tr>
41
42                                                                 <tr>
43                                                                         <td nowrap='nowrap' class='rdetail_desc'>&rdetail.detailMain.isbn;</td>                 
44                                                                         <td class='rdetail_item' id='rdetail_isbn'> </td>
45                                                                 </tr>
46
47                                                                 <tr>
48                                                                         <td nowrap='nowrap' class='rdetail_desc'>&rdetail.detailMain.edition;</td>              
49                                                                         <td class='rdetail_item' id='rdetail_edition'> </td>
50                                                                 </tr>
51
52                                                                 <tr>
53                                                                         <td nowrap='nowrap' class='rdetail_desc'>&rdetail.detailMain.pubdate;</td>              
54                                                                         <td class='rdetail_item' id='rdetail_pubdate'> </td>
55                                                                 </tr>
56
57                                                                 <tr>
58                                                                         <td nowrap='nowrap' class='rdetail_desc'>&rdetail.detailMain.publisher;</td>            
59                                                                         <td class='rdetail_item' id='rdetail_publisher'> </td>
60                                                                 </tr>
61
62                                                                 <tr>
63                                                                         <td nowrap='nowrap' class='rdetail_desc'>&rdetail.detailMain.tor;</td>                  
64                                                                         <td class='rdetail_item' id='rdetail_tor'> </td>
65                                                                 </tr>
66
67                                                                 <tr>
68                                                                         <td nowrap='nowrap' class='rdetail_desc'>&rdetail.detailMain.abstract;</td>     
69                                                                         <td class='rdetail_item' id='rdetail_abstract'> </td>
70                                                                 </tr>
71
72                                                         </tbody>
73                                                 </table>
74                                         </div> <!-- details_body -->
75                                 </div> <!-- details_main -->
76
77                                 <br/><br/>
78
79                                 <!-- This holds information for copies attached to this record -->
80                                 <div>
81
82
83                                         <!-- header bar for the copy info table.  this allows you to select local
84                                                         or global copy information -->
85                                         <table class='color_1 rdetail_header' width='100%' >
86                                                 <tbody>
87                                                         <tr>
88                                                                 <td align='left'>&rdetail.copyInfo.headerLabel;</td>
89                                                                 <td align='right'>
90                                                                         <a href='javascript:void(0);' id='copy_info_local_link' 
91                                                                                 class='rdetail_copy_nav_link hide_me'>&rdetail.copyInfo.local;</a>
92                                                                 </td>
93                                                                 <td align='right'>
94                                                                         <a href='javascript:void(0);' id='copy_info_all_link' 
95                                                                                 class='rdetail_copy_nav_link'>&rdetail.copyInfo.all;</a>
96                                                                 </td>
97                                                         </tr>
98                                                 </tbody>
99                                         </table>
100                                         <table id='rdetail_copy_info_table'>
101                                                 <tbody>
102                                                         <tr>
103                                                                 <td  class='rdetail_copy_info_header_cell'>&rdetail.copyInfo.library;</td>
104                                                                 <td  class='rdetail_copy_info_header_cell'>&rdetail.copyInfo.callnumber;</td>
105                                                                 <td  nowrap='nowrap' class='rdetail_copy_info_header_cell' id='rdetail_copy_info_status'> </td>
106                                                         </tr>
107                                                         <tr id='rdetail_copy_info_row'>
108                                                                 <td name='rdetail_library_cell'> </td>
109                                                                 <td name='rdetail_callnumber_cell'> </td>
110                                                                 <td nowrap='nowrap' class='rdetail_copy_count_cell' name='rdetail_copy_count_cell'> </td>
111                                                         </tr>
112                                                         <tr id='rdetail_copy_info_loading'>
113                                                                 <td>&rdetail.loading;</td>
114                                                         </tr>
115                                                                                                         </tbody>
116                                         </table>
117                                         <div id='rdetail_copy_info_none' class='hide_me'>&rdetail.noneAvailable;</div>
118                                 </div> <!-- copy info -->
119                         </div>
120                 </div>
121         </body>
122 </html>
123
124
125