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