]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/webxml/result_table.xml
removing old opac images and css
[working/Evergreen.git] / Open-ILS / src / webxml / result_table.xml
1 <?xml version='1.0'?>
2
3 <!-- Search results are spit into this table -->
4
5 <div id='result_table_div' xmlns:xi="http://www.w3.org/2001/XInclude">
6
7         <table id='res_table'> 
8
9                 <!-- for some reason, this is the only way i can force the cell widths -->
10                 <thead><td class='result_table_pic_header'></td><td/></thead>
11
12                 <tbody id='result_table'>
13
14                         <!-- Template for displaying a search result.  This row template is cloned and inserted
15                                         for each result returned -->
16
17                         <tr id='result_table_template'>
18
19                                 <!-- Jacket image goes here -->
20                                 <td width="10%"><a><img name='item_jacket' class='result_table_pic'/></a></td>
21
22                                 <td class='result_table_row'>
23                                         <table class='result_table_subtable'>
24                                                 <tbody class='result_table_subtbody'>
25
26                                                         <tr name='counts_row'>
27
28                                                                 <td class='result_table_title_cell' name='result_table_title_cell'>
29                                                                         <a title="View titles for this record" name='item_title' class='search_link'> 
30                                                                                 <!-- Title goes here -->
31                                                                         </a>
32                                                                 </td>
33
34                                                                 <!-- Copy this td for each copy count appended -->
35                                                                 <td nowrap='nowrap' name="copy_count_cell" class='copy_count_cell' rowspan='3'> </td>
36
37                                                         </tr>
38                 
39                                                         <tr>
40                                                                 <td class='result_table_author_cell'>
41                                                                         <a title="Perform an Author Search" name='item_author' class='search_link'> 
42                                                                                 <!-- Author goes here -->
43                                                                         </a>
44                                                                 </td>
45                                                         </tr>
46
47                                                         <tr>
48                                                                 <td class='result_table_format_cell'>
49                                                                         <a class='search_link'> 
50                                                                                 <!-- Item formats go here -->
51                                                                         </a>
52                                                                 </td>
53                                                         </tr>
54
55                                                 </tbody>
56                                         </table>
57                                 </td>
58
59                         </tr>
60                 </tbody>
61         </table>
62 </div>
63
64