]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/templates/opac/parts/result/table.tt2
Merge remote-tracking branch 'eg-working/user/berick/hold-current-shelf-lib'
[Evergreen.git] / Open-ILS / src / templates / opac / parts / result / table.tt2
1 [%  PROCESS "opac/parts/misc_util.tt2";
2
3     USE ResolverResolver;
4
5     ctx.result_start = 1 + ctx.page_size * page;
6     ctx.result_stop = ctx.page_size * (page + 1);
7     IF ctx.result_stop > ctx.hit_count; ctx.result_stop = ctx.hit_count; END;
8
9     result_count = ctx.result_start;
10 %]
11
12 [% PROCESS "opac/parts/result/paginate.tt2" %] 
13 [% ctx.results_count_header = PROCESS results_count_header;
14     ctx.results_count_header %]
15
16 <div id="result_table_div">
17             <div class="facet_sidebar">
18                 [% INCLUDE "opac/parts/staff_saved_searches.tt2" %]
19                 [% INCLUDE 'opac/parts/result/facets.tt2' %]
20             </div>
21             <div class="result_block">
22                 <table cellpadding="0" cellspacing="0"
23                     border="0" style="margin-top:10px;">
24                     <tbody id="result_table">
25                     [%  FOR rec IN ctx.records;
26                             attrs = {marc_xml => rec.marc_xml};
27                             PROCESS get_marc_attrs args=attrs %]
28                         <tr class="result_table_row">
29                             <td class="result_table_row" align='left' width='100%'>
30                                 <table cellpadding="0" cellspacing="0" class='result_table_subtable'>
31                                     <tbody class='result_table_subtbody'>
32                                         <tr name='counts_row'>
33                                             <td valign="top" class="results_row_count"
34                                                 name="results_row_count">[%
35                                                     result_count; result_count = result_count + 1
36                                                 %].</td>
37                                             <td class='result_table_pic_header' align='center'
38                                                 width="78" nowrap="nowrap" valign="top">
39                                                 [% ident = attrs.isbn_clean || attrs.upc; IF ident; %]
40                                                 <a href="[% mkurl(ctx.opac_root _ '/record/' _ rec.id) %]"><img alt="[% l('Image of item') %]"
41                                                         name='item_jacket' class='result_table_pic' width="55"
42                                                         src='[% ctx.media_prefix %]/opac/extras/ac/jacket/small/[% ident | uri %]' /></a><br />
43                                                 [% END %]
44                                             </td>
45                                             <td class='result_table_title_cell' name='result_table_title_cell' valign="top">
46                                                 <div class="bold">
47                                                     <a name='record_[% rec.id %]' name='item_title'
48                                                         href="[% mkurl(ctx.opac_root _ '/record/' _ rec.id) %]"
49                                                         [% HTML.attributes(title => l('Display record details for "[_1]"', attrs.title)) %]
50                                                         class='search_link'>[% attrs.title | html %]</a>
51                                                 </div>
52                                                 <div>
53                                                     <div>
54                                                         <em><a title="[% l("Perform an Author Search") %]"
55                                                                 name='item_author'
56                                                                 href="[%- 
57                                                                     authorquery = attrs.author | replace('[,\.:;]', '');
58                                                                     mkurl(ctx.opac_root _ '/results', {qtype => 'author', query => authorquery}, ['page'])
59                                                                     -%]">[% attrs.author | html %]</a></em>
60                                                         &nbsp;&nbsp;
61                                                         [% attrs.pubdate | html %]
62                                                     </div>
63                                                     <table cellpadding="0" cellspacing="0" border="0"
64                                                         class="results_info_table">
65                                                         [% IF args.holdings.size > 0 %]
66                                                         <tr name='bib_cn_list' class='result_table_title_cell'>
67                                                             <td valign='top'>
68                                                                 <strong>[% l('Call number:') %]</strong>
69                                                             </td>
70                                                             <td>[% args.holdings.0.label | html %]</td>
71                                                         </tr>
72                                                         [% END %]
73
74                                                         [% IF CGI.param('detail_record_view') %]
75                                                         <!-- These fields are visible when viewing the results page in 'detailed' mode -->
76
77                                                         [% IF attrs.publisher %]
78                                                             <tr name="results_pub_tr">
79                                                                 <td valign="top">
80                                                                     <strong>[% l('Publisher:') %]</strong>
81                                                                 </td>
82                                                                 <td>[% attrs.publisher | html %]</td>
83                                                             </tr>
84                                                         [% END %]
85                                                         [% IF attrs.isbns.size > 0 %]
86                                                             <tr name="results_isbn_tr">
87                                                                 <td valign="top">
88                                                                     <strong>[% l('ISBN:') %]</strong>
89                                                                 </td>
90                                                                 <td>[% attrs.isbns.0 | html %]</td>
91                                                             </tr>
92                                                         [% END %]
93                                                         [%- IF openurl.enabled == 'true';
94                                                             FOREACH issn IN args.issns;
95                                                                 NEXT IF issn == '';
96                                                                 res_urls = ResolverResolver.resolve_issn(issn, openurl.baseurl);
97                                                                 FOREACH res IN res_urls;
98                                                         %]
99                                                         <tr name="results_issn_tr">
100                                                             <td valign="top">
101                                                                 <strong><a href="[% res.target_url %]">
102                                                                 [% res.public_name | html %]</a></strong>
103                                                             </td>
104                                                             <td>[% res.target_coverage | html %]</td>
105                                                         </tr>
106                                                                 [% END %]
107                                                             [% END %]
108                                                         [% END %]
109
110                                                         [% IF attrs.edition %]
111                                                             <tr name="results_edition_tr">
112                                                                 <td valign="top">
113                                                                     <strong>[% l('Edition:') %]</strong>
114                                                                 </td>
115                                                                 <td>[% attrs.edition | html %]</td>
116                                                             </tr>
117                                                         [% END %]
118                                                         [% IF attrs.phys_desc %]
119                                                             <tr name="results_phys_desc_tr">
120                                                                 <td nowrap="nowrap" valign="top">
121                                                                     <strong>[% l('Phys. Desc.:') %]</strong>
122                                                                 </td>
123                                                                 <td>
124                                                                     [% args.phys_desc | html %]
125                                                                 </td>
126                                                             </tr>
127                                                         [% END %]
128                                                         [% FOR uri IN args.uris %]
129                                                             <tr name='bib_uri_list' class='result_table_title_cell'>
130                                                                 <td valign='top'>
131                                                                     <strong>[% l('Electronic resource') %]</strong>
132                                                                 </td>
133                                                                 <td><a href="[% uri.href %]">[% uri.link | html %]</a>[% ' - ' _ uri.note | html IF uri.note %]</td>
134                                                             </tr>
135                                                             [% END %]
136                                                             [%- IF args.holdings.size > 0;
137                                                                 FOREACH copy IN args.holdings;
138                                                                     IF copy.part_label != '';
139                                                                         has_parts = 'true';
140                                                                         LAST;
141                                                                     END;
142                                                                 END;
143                                                             %]
144                                                             <tr name='bib_cn_list' class='result_table_title_cell'>
145                                                                 <td colspan='2'>
146                                                                     <table class='result_holdings_table'>
147                                                                         <thead><tr>
148                                                                             <th>[% l('Library') %]</th>
149                                                                             <th>[% l('Shelving location') %]</th>
150                                                                             <th>[% l('Call number') %]</th>
151                                                                             [%- IF has_parts == 'true'; %]
152                                                                             <th>[% l('Part') %]</th>
153                                                                             [%- END %]
154                                                                             <th>[% l('Status') %]</th>
155                                                                         </tr></thead>
156                                                                         <tbody>
157                                                                 [% FOR copy IN args.holdings %]
158                                                                         <tr>
159                                                                             <td>[% copy.library | html %]</td>
160                                                                             <td>[% copy.location | html %]</td>
161                                                                             <td>[% copy.label | html %]</td>
162                                                                             [%- IF has_parts == 'true'; %]
163                                                                             <td>[% copy.part_label %]</td>
164                                                                             [%- END %]
165                                                                             <td>[% copy.status | html %]</td>
166                                                                         </tr>
167                                                                 [% END %]
168                                                                         </tbody>
169                                                                     </table>
170                                                                 </td>
171                                                             </tr>
172                                                             [%- has_parts = 'false';
173                                                                 END;
174                                                              %]
175                                                         [% END %] <!-- END detail_record_view -->
176                                                     </table>
177                                                     [% PROCESS "opac/parts/result/copy_counts.tt2" %]
178                                                     [% IF rec.user_circulated %]
179                                                     <div class="result_item_circulated">
180                                                         <img src="[% ctx.media_prefix %]/images/green_check.png" alt="[% l('Checked Out Before') %]"/>
181                                                         <span>[% l('I have checked this item out before') %]</span>
182                                                     </div>
183                                                     [% END %]
184                                                 </div>
185                                             </td>
186
187                                             <td name='result_table_format_cell' class='result_table_format_cell' width="1">
188
189                                                 [% IF attrs.format_icon %]
190                                                 <img title="[% attrs.format_label | html %]" alt="[% attrs.format_label | html %]" src="[% attrs.format_icon %]" />
191                                                 [% END %]
192
193                                                 <!-- unAPI link -->
194                                                 <abbr class="unapi-id" title='tag:[% ctx.hostname %],[% date.format(date.now, '%Y') %]:biblio-record_entry/[% rec.id %]'></abbr>
195
196                                                 <!-- Empty span used for creating Google Book Search-->
197                                                 <span name="googleBooksLink" class="hide_me">
198                                                     <a style='padding-left: 8px;'
199                                                         class='classic_link hide_me'
200                                                         name="googleBooks-link">[% l("Browse in Google Books Search") %]</a>
201                                                 </span>
202                                             </td>
203                                             <td nowrap='nowrap' width="1" align="right">
204                                                 <div class="result_table_utils_cont">
205                                                     <div class="result_table_utils">
206                                                         <div class="results_aux_utils place_hold"><a
207                                                                 href="[% mkurl(ctx.opac_root _ '/place_hold', 
208                                                                     {hold_target => rec.id, hold_type => 'T', hold_source_page => mkurl()}) %]" 
209                                                                     name="place_hold_link" class="no-dec"><img
210                                                                 src="[% ctx.media_prefix %]/images/green_check.png"
211                                                                 alt=""/><span class="result_place_hold">[% l('Place Hold') %]</span></a>
212                                                         </div>
213                                                         <div class="results_aux_utils result_util">
214                                                             [%  
215                                                                 operation = ctx.mylist.grep(rec.id).size ? "delete" : "add";
216                                                                 label = (operation == "add") ? l("Add to my list") : l("Remove from my list");
217                                                                 href = mkurl(ctx.opac_root _ '/mylist/' _ operation, 
218                                                                         {record => rec.id, anchor => 'record_' _ rec.id}, 1);
219                                                             %]      
220                                                             <a href="[% href %]" class="no-dec">
221                                                                 <img src="[% ctx.media_prefix %]/images/clipboard.png" alt="" />
222                                                                 [% label %]
223                                                             </a>
224                                                         </div>
225                                                         [% IF ENV.OILS_CONTENT_CAFE_USER %]
226                                                         <div class="results_aux_utils result_util">
227                                                             <a title="[% l('Reviews and More') %]" target='_blank' 
228                                                                 href="[% ctx.proto %]://contentcafe2.btol.com/ContentCafeClient/ContentCafe.aspx?UserID=[%- 
229                                                                     ENV.OILS_CONTENT_CAFE_USER %]&amp;Password=[%-
230                                                                     ENV.OILS_CONTENT_CAFE_PASS %]&amp;ItemKey=[% ident | uri %]&Options=Y">
231                                                                 <img src='[% ctx.media_prefix %]/images/starz.png'/> 
232                                                                 <span class="results_reviews">[% l('Reviews &amp; More') %]</span>
233                                                             </a>
234                                                         </div>
235                                                         [% END %]
236                                                     </div>
237                                                 </div>
238                                             </td>
239                                         </tr>
240                                         [%- IF ENV.OILS_CHILIFRESH_ACCOUNT %]
241                                         <tr>
242                                             <td/>
243                                             <td align='center'> <!-- Chilifresh reviews link --> 
244                                                 <span class="chili_review" id="isbn_[% attrs.isbn_clean | html %]"> </span>
245                                             </td>
246                                         </tr>
247                                         <tr>
248                                             <td/>
249                                             <td colspan='5'> <!-- Chilifresh reviews panel -->
250                                                 <div id="chili_review_[% attrs.isbn_clean | html %]" style="display: none;" align="center"></div>
251                                             </td>
252                                         </tr>
253                                         [%- END %]
254                                     </tbody>
255                                 </table>
256                             </td>
257                         </tr>
258                     [% END %]
259                     </tbody>
260                 </table>
261             </div>
262 </div>
263 <div>
264     [% ctx.results_count_header %]
265 </div>