]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/templates/opac/parts/record/summary.tt2
LP#1303544 Trim junk from the ISBN in record summary
[working/Evergreen.git] / Open-ILS / src / templates / opac / parts / record / summary.tt2
1 [%  PROCESS "opac/parts/misc_util.tt2";
2     USE ResolverResolver;
3     ctx.page_title = attrs.title | html
4 %]
5 <!-- ****************** rdetail_summary.xml ***************************** -->
6 <abbr class="unapi-id" title='tag:[% ctx.hostname %],[% date.format(date.now, '%Y') %]:biblio-record_entry/[% ctx.bre_id %]'></abbr>
7
8 <hr />
9
10 [%-# This holds the record summary information %]
11 <div id="rdetail_summary_header">
12     <div id='rdetail_title_div'>
13         <h1 id='rdetail_title' property="name">[% attrs.title_extended | html %]</h1>
14         [%-
15             FOR link880 IN attrs.graphic_titles;
16                 FOR alt IN link880.graphic;
17                     '<h2 class="graphic880"';
18                     IF alt.dir;
19                         ' dir="' _ alt.dir _ '"';
20                     END;
21                     '>'; alt.value | html; '</h2>';
22                 END;
23             END;
24         -%]
25         [%- INCLUDE "opac/parts/record/authors.tt2" %]
26     </div>
27     <div id="rdetail_image_div">
28         <a href='[% ctx.media_prefix %]/opac/extras/ac/jacket/large/r/[% ctx.bre_id | uri %]'><img
29             alt="[% l('Image of item') %]" id='rdetail_image'
30             src='[% ctx.media_prefix %]/opac/extras/ac/jacket/[% record.summary.jacket_size %]/r/[% ctx.bre_id | uri %]' /></a>
31         <br />
32     </div>
33     <div id="format_actions">
34         [%- IF attrs.format_label %]
35           [% FOR format IN attrs.all_formats %]
36               <img title="[% format.label | html %]" 
37                   alt="[% format.label | html %]" 
38                   src="[% format.icon %]" /> 
39               [% format.label | html %]
40           [% END %]
41         [%- END %]
42         <div id="rdetail_actions_div">
43             [%- search_ou = ctx.search_ou;
44                 IF ctx.place_unfillable ||
45                     ( attrs.marc_xml.findnodes('//*[local-name()="holdings" and @has_holdable="true"]').size > 0
46                         && (ctx.holds_block.enabled != 'true' || attrs.org_copy_counts.$search_ou.available == 0)
47                     )
48              %]
49             <div class="rdetail_aux_utils place_hold">
50                 <a href="[% mkurl(ctx.opac_root _ '/place_hold', 
51                     {hold_target => ctx.bre_id, hold_type => 'T', hold_source_page => mkurl()}, stop_parms) %]" 
52                 class="no-dec"><img src="[% ctx.media_prefix %]/images/green_check.png" 
53                     [% img_alt(l('Place Hold on [_1]', attrs.title)) %]/>
54                 <span class="place_hold">[% l('Place Hold') %]</span></a>
55             </div>
56             [%- END -%]
57             <div class="rdetail_aux_utils toggle_list">
58             [%  IF ctx.user;
59                 INCLUDE "opac/parts/bookbag_actions.tt2";
60             %]
61             [%  ELSE;
62                 operation = ctx.mylist.grep(ctx.bre_id).size ? "delete" : "add";
63                 label = (operation == "add") ? l("Add to my list") : l("Remove from my list"); 
64             %]
65                 <a href="[% mkurl(ctx.opac_root _ '/mylist/' _ operation, {record => ctx.bre_id}, stop_parms) %]" class="no-dec">
66                     <img src="[% ctx.media_prefix %]/images/clipboard.png" alt="" />
67                     [% label %]
68                 </a>
69             [% END %]
70             </div>
71             <div class="rdetail_aux_utils">
72                 <img src="[% ctx.media_prefix %]/images/clipboard.png" alt="[% l('Print / Email Actions Image') %]" />
73                 <a href="[% mkurl(ctx.opac_root _ '/record/print/' _ ctx.bre_id) %]" class="no-dec">[% l('Print') %]</a> /
74                 <a href="[% mkurl(ctx.opac_root _ '/record/email/' _ ctx.bre_id) %]" class="no-dec">[% l('Email') %]</a>
75             </div>
76             [%- IF ctx.refworks.enabled == 'true' %]
77                 [%- INCLUDE 'opac/parts/record/refworks.tt2' %]
78             [%- END %]
79         </div>
80     </div>
81 </div>
82
83 [%- IF openurl.enabled == 'true';
84     openurls = [];
85     FOREACH issn IN args.issns;
86         NEXT IF issn == '';
87         openurls = openurls.import(ResolverResolver.resolve_issn(issn, openurl.baseurl));
88     END;
89     IF openurls.size && openurls.0 != '';
90 %]
91     <div id='rdetail_openurl'>
92         <strong class='rdetail_openurl_title'>[% l("Electronic resources") %]</strong>
93         <table><tbody>
94 [%-
95         FOREACH res IN openurls;
96 %]
97         <tr>
98             <td class='rdetail_openurl_entry'><a href="[% res.target_url %]">[% res.public_name %]</a></td>
99             <td>[% res.target_coverage %]</td>
100         </tr>
101     [%- END %]
102     </tbody></table>
103 [%- END %]
104     </div>    
105 [%- END %]
106 [%- merged_uris = args.uris.merge(args.online_res);
107 num_uris = merged_uris.size;
108 IF num_uris > 0;
109 -%]
110 <h2 class="rdetail_uris">[% l("Electronic resources") %]</h2>
111 <div class="rdetail_uris">
112     [%- IF num_uris > 1 %]<ul>[% END %]
113     [%- FOR uri IN merged_uris %]
114         [%- IF num_uris == 1 -%]
115             <p class="rdetail_uri" property="offers" vocab="http://schema.org/" typeof="Offer">
116         [%- ELSE -%]
117             <li class="rdetail_uri" property="offers" vocab="http://schema.org/" typeof="Offer">
118         [%- END -%]
119         <a href="[% uri.href %]">[% uri.link %]</a>[% ' - ' _ uri.note IF uri.note %]
120         <link property="availability" href="http://schema.org/OnlineOnly" />
121         [%- IF attrs.gtin13; '<meta property="gtin13" content="' _ attrs.gtin13 _ '" />'; END; %]
122         [%- IF num_uris == 1 %]</p>[% ELSE %]</li>[% END %]
123     [%- END %]
124     [%- IF num_uris > 1 %]</ul>[% END %]
125 </div>
126 [%- END %]
127 [%- # Hold/copy summary
128     IF ctx.copy_summary.0.count
129 %]
130 <div id="copy_hold_counts">
131 [%- INCLUDE "opac/parts/record/copy_counts.tt2" %]
132     <span id="rdetail_hold_counts">
133         <h2>[% l('Current holds') %]</h2>
134         <p>
135             [% 
136                 # If org hiding is enabled/relevant, only show 
137                 # counts for copies within the hiding scope.
138                 count_entry = 0;
139                 FOR count_chunk IN ctx.copy_summary;
140                     IF ctx.org_within_hiding_scope(count_chunk.org_unit);
141                         # always true when hiding is disabled
142                         LAST;
143                     END;
144                     count_entry = count_entry + 1;
145                 END;
146                 l("[quant,_1,current hold,current holds] with [quant,_2,total copy,total copies].", 
147                     ctx.record_hold_count, ctx.copy_summary.$count_entry.count) 
148             %]
149         </p>
150     </span>
151 [%- INCLUDE "opac/parts/record/copy_table.tt2" copies=ctx.copies %]
152 </div>
153 [%- END %]
154
155 <h2 id='rdetail_record_details'>[% l("Record details") %]</h2>
156 <ul>
157     [%- IF attrs.isbns.0;
158           FOR isbn IN attrs.isbns;
159             isbn_extra = '';
160             IF (matches = isbn.match('^(.+?)(\s.+)$'));
161               isbn = matches.0;
162               isbn_extra = matches.1;
163             END;
164     %]
165     <li class='rdetail_isbns'>
166         <strong class='rdetail_label'>[% l('ISBN:'); %]</strong>
167         <span class='rdetail_value' property='isbn'>[% isbn | html  %]</span>[% isbn_extra | html %]
168     </li>
169         [%- END %]
170     [%- END %]
171     [%- IF attrs.issns.0; FOR issn IN attrs.issns %]
172     <li class='rdetail_issns'>
173         <strong class='rdetail_label'>[% l('ISSN:'); %]</strong>
174         <span class='rdetail_value'>[% issn | html  %]</span>
175     </li>
176         [%- END %]
177     [%- END %]
178     [%- IF attrs.phys_desc %]
179     <li id='rdetail_phys_desc'>
180         <strong class='rdetail_label'>[% l("Physical Description:") %]</strong>
181         <span class='rdetail_value'>[% attrs.phys_desc | html %]</span>
182     </li>
183     [%- END %]
184     [%- IF attrs.edition %]
185     <li id='rdetail_edition'>
186         <strong class='rdetail_label'>[% l("Edition:") %]</strong>
187         <span class='rdetail_value'>[% attrs.edition | html %]</span>
188         [%-
189         FOR entry IN attrs.graphic_editions;
190             FOR alt IN entry.graphic;
191                 diratt = "";
192                 IF alt.dir;
193                     diratt = ' dir="' _ alt.dir _ '"';
194                 END;
195         -%]
196         <div class="graphic880 rdetail_value"[% diratt %]>
197             [% alt.value | html %]
198         </div>
199         [%-
200             END;
201         END;
202         -%]
203     </li>
204     [%- END %]
205     [%- IF attrs.publisher %]
206     <li id='rdetail_publisher'>
207         <strong class='rdetail_label'>[% l("Publisher:") %]</strong>
208         <span class='rdetail_value' property="publisher" typeof="Organization">
209         [%- IF attrs.pubplace; %]
210             <span property="location">[% attrs.pubplace | html; %]</span>
211         [%- END; %]
212             <span property="name">[% attrs.publisher | html; %]</span>
213         </span>
214         [%- IF attrs.pubdate; %]
215             <span property="datePublished">[% attrs.pubdate | html; %]</span>
216         [%- END; %]
217         [%-
218         IF attrs.graphic_pubinfos.size > 0;
219             FOR entry IN attrs.graphic_pubinfos;
220                 FOR alt IN entry.graphic;
221                     diratt = "";
222                     IF alt.dir;
223                         diratt = ' dir="' _ alt.dir _ '"';
224                     END;
225         -%]
226         <div class="graphic880"[% diratt %]>
227             [% alt.value | html %]
228         </div>
229         [%-
230                 END;
231             END;
232         END
233         -%]
234     </li>
235     [%- END %]
236 </ul>
237
238 [%- INCLUDE "opac/parts/record/contents.tt2" %]
239 [%- INCLUDE "opac/parts/record/subjects.tt2" %]
240 [%- INCLUDE "opac/parts/record/series.tt2" %]
241 [%- INCLUDE "opac/parts/record/extras.tt2" %]