Koha/koha-tmpl/opac-tmpl/prog/en/modules/opac-ISBDdetail.tmpl

192 lines
No EOL
7.7 KiB
Cheetah

<!-- TMPL_INCLUDE NAME="doc-head-open.inc" --><!-- TMPL_VAR NAME="LibraryNameTitle" --> Catalog &rsaquo; ISBD View
<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
<script type="text/JavaScript" language="JavaScript">
//<![CDATA[
$(document).ready(function() {
var $tabs = $('#bibliodescriptions').tabs({
onClick: function(tab) {
if ( $(tab).is('.external') ) {
location.href = tab.href;
return false;
}
}
});
});
//]]>
</script>
</head>
<body>
<!-- TMPL_INCLUDE name="masthead.inc" -->
<div id="doc3" class="yui-t1">
<div id="bd">
<div id="yui-main">
<div class="yui-b"><div class="yui-g">
<div id="toolbar">
<ul><!-- TMPL_UNLESS NAME="norequests" -->
<!-- TMPL_IF NAME="RequestOnOpac" -->
<li><a href="/cgi-bin/koha/opac-reserve.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->">
Place Reserve
</a></li>
<!-- /TMPL_IF -->
<!-- /TMPL_UNLESS -->
<li><a href="/cgi-bin/koha/opac-MARCdetail.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->">
MARC View
</a></li>
<li><a href="/cgi-bin/koha/opac-detail.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->">
Normal
</a></li>
<li><a href="/cgi-bin/koha/opac-detailprint.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->" onclick="Dopop('opac-detailprint.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->'); return false;">
Print
</a></li>
<!-- TMPL_IF name="virtualshelves" -->
<!-- TMPL_IF NAME="loggedinusername" -->
<li> <a href="/cgi-bin/koha/opac-addbybiblionumber.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->" onclick="Dopop('opac-addbybiblionumber.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->'); return false;">
Add to My Book List
</a></li>
<!-- /TMPL_IF -->
<!-- /TMPL_IF -->
<li><a href="#" onclick="addRecord('<!-- TMPL_VAR NAME="biblionumber" -->'); return false;">
Add to My Book Bag
</a></li></ul>
</div>
<h1>ISBD</h1>
<!-- TMPL_VAR name="ISBD" -->
<div id="bibliodescriptions" class="toptabs">
<ul>
<!-- TMPL_IF name="subscriptionsnumber" --><li>
<a href="/cgi-bin/koha/opac-ISBDdetail.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->#opac-isbd-subscriptions">Subscriptions</a>
</li><!-- /TMPL_IF -->
<!-- TMPL_IF NAME="reviewson" --><li><a href="/cgi-bin/koha/opac-ISBDdetail.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->#opac-isbd-comments">Comments</a></li><!-- /TMPL_IF -->
<!-- TMPL_IF NAME="AmazonContent" --><li><a href="/cgi-bin/koha/opac-ISBDdetail.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->#opac-isbd-amazonreviews">Amazon Reviews</a></li><!-- /TMPL_IF -->
<li><a class="external" href="/cgi-bin/koha/opac-detail.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->">Normal View</a></li>
<li> <a class="external" href="/cgi-bin/koha/opac-MARCdetail.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->">
MARC View
</a></li>
</ul>
<div id="opac-isbd-subscriptions"> <!-- TMPL_IF name="subscriptionsnumber" -->
<h2>
We have <!-- TMPL_VAR name="subscriptionsnumber" --> subscription(s) associated with this title.
</h2>
<p>Below is a list of the three latest issues :</p>
<!-- TMPL_LOOP Name="subscriptions" -->
<!-- TMPL_IF name="subscriptionnotes"-->
<h2><!--TMPL_VAR Name="subscriptionnotes"--> </h2>
<!-- /TMPL_IF -->
<!--TMPL_IF Name="latestserials"-->
<table>
<tr><th>Issue number</th><th>Date</th><th>Status</th></tr>
<!--TMPL_LOOP Name="latestserials"-->
<tr>
<td> <!--TMPL_VAR Name="serialseq"-->
</td>
<td> <!--TMPL_VAR Name="planneddate"-->
</td>
<td> <!--TMPL_IF Name="status1"-->Pending
<!--TMPL_ELSE -->
<!-- TMPL_IF Name="status2"-->Arrived
<!--TMPL_ELSE -->
<!-- TMPL_IF Name="status3"-->Late
<!--TMPL_ELSE -->
<!-- TMPL_IF Name="status4"-->Missing
<!--TMPL_ELSE -->
<!-- TMPL_IF Name="status5"-->Not Issued
<!--/TMPL_IF-->
<!--/TMPL_IF-->
<!--/TMPL_IF-->
<!--/TMPL_IF-->
<!--/TMPL_IF-->
</td>
</tr>
<!--/TMPL_LOOP -->
</table>
<!-- /TMPL_IF -->
<!-- /TMPL_LOOP -->
<p><a href="/cgi-bin/koha/opac-serial-issues.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->" title="Serial issues">Click here</a> for more information on subscription(s) history</p>
<!-- /TMPL_IF --></div>
<!-- TMPL_IF NAME="reviewson" -->
<div id="opac-isbd-comments"><!-- TMPL_IF NAME="reviews" -->
<h2>Reviews by members:</h2>
<!--TMPL_LOOP NAME="reviews"-->
<p>
<b>
Review by
<!--TMPL_VAR NAME="title"-->
<!--TMPL_VAR NAME="surname"-->
<!--TMPL_VAR NAME="firstname"-->
</b>
<br />
<small>
<!--TMPL_VAR NAME="datereviewed"-->
</small>
</p>
<p>
<!--TMPL_VAR NAME="review"-->
</p>
<br />
<!--/TMPL_LOOP-->
<!-- TMPL_ELSE -->
<b>No reviews has been writed on this biblio.</b>
<!-- /TMPL_IF -->
<!-- TMPL_IF NAME="loggedinusername" -->
<a href="javascript:Dopop('/cgi-bin/koha/opac-review.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber"-->');">
Write or modify your reviews on this biblio.
</a>
<!-- TMPL_ELSE -->
<br /><a href="/cgi-bin/koha/opac-user.pl">Log in to your account</a> to write a review here.
<!-- /TMPL_IF --></div>
<!-- /TMPL_IF -->
<!-- TMPL_IF NAME="AmazonContent" -->
<!-- Amazon Reviews -->
<div id="opac-isbd-amazonreviews">
<h2>Amazon Reader Reviews:</h2>
<h4>
<!-- TMPL_LOOP NAME="BIBLIO_RESULTS" -->
<!-- TMPL_IF NAME="isbn" -->
<a href="http://www.amazon.com/gp/customer-reviews/write-a-review.html/002-2970817-7876066?%5Fencoding=UTF8&asin=<!-- TMPL_VAR NAME="isbn" -->&store=books">Add your own review</a></h4>
<!-- /TMPL_IF -->
<!-- /TMPL_LOOP --><br/>
<!-- TMPL_IF NAME="rating" -->
<h4>Rating (from Amazon.com):</h4>
<div id="starMT"><div id="starFull" style="width:<!-- TMPL_VAR NAME="rating" -->px"></div></div>
<!-- TMPL_LOOP NAME="AMAZONREVIEWS" -->
<div class="content_set">
<!-- TMPL_IF NAME="summary" -->
<h4 class="underline"> <!-- TMPL_VAR NAME="summary" --></h4>
<!-- /TMPL_IF -->
<!-- TMPL_IF NAME="comment" -->
<p><!-- TMPL_VAR NAME="comment" -->
</p><!-- /TMPL_IF -->
</div>
<!-- /TMPL_LOOP -->
<!-- TMPL_ELSE -->
<div class="content_set">
<p class="error"> Sorry, there are no reviews available for this title. </p>
</div>
<!-- /TMPL_IF -->
</div> <!-- itemReviews -->
<!-- /TMPL_IF-->
</div>
</div>
</div>
</div>
<div class="yui-b">
<!--TMPL_INCLUDE NAME="navigation.inc" -->
<!-- TMPL_INCLUDE name="usermenu.inc" -->
</div>
</div>
<!-- TMPL_INCLUDE NAME="opac-bottom.inc" -->