New XML API
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / serials / serial-issues-full.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->Koha<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
2 <!-- TMPL_INCLUDE NAME="menus.inc" -->
3 <!-- TMPL_INCLUDE NAME="menu-serials.inc" -->
4
5 <!-- TMPL_UNLESS name="popup" -->
6         <h1 class="serial">Subscription information for biblio #<!-- TMPL_VAR NAME="biblionumber" --> with title : <!-- TMPL_VAR name="bibliotitle" --></h1>
7         <p>
8         <a href="opac-detail.pl?bib=<!-- TMPL_VAR name="biblionumber" -->" class="button serial">Back to biblio</a>
9 <!-- /TMPL_UNLESS -->
10         <!-- TMPL_LOOP NAME="years" -->
11                 <!-- TMPL_IF NAME="year" -->
12                         <a  class="button serial" href="javascript:active(<!-- TMPL_VAR NAME="year" -->)"><!-- TMPL_VAR NAME="year" --></a>
13                 <!-- /TMPL_IF -->
14         <!-- /TMPL_LOOP -->
15         <a class=" button serial" href="serial-issues.pl?biblionumber=<!-- TMPL_VAR name="biblionumber" -->&selectview=small">Compact view</a>
16         </p>
17         <!-- TMPL_LOOP NAME="years" -->
18         <div name="<!-- TMPL_VAR NAME="year" -->" id="<!-- TMPL_VAR NAME="year" -->" style="position:absolute; visibility:hidden; margin-top:0px; border:4px;" <!--TMPL_IF Name="first" -->style="visibility:visible"<!--/TMPL_IF -->>
19                 <table>
20                         <tr>
21                                 <th class="serial">Information
22                                 </th>
23                                 <th class="serial">Date
24                                 </th>
25                                 <th class="serial">Number
26                                 </th>
27                                 <th class="serial">Status
28                                 </th>
29                         </tr>
30                         <!-- TMPL_LOOP Name="serials" -->
31                         <tr>
32                                 <td>
33                                         <!-- TMPL_VAR name="notes" -->
34                                 </td>
35                                 <td>
36                                         <!-- TMPL_VAR Name="planneddate" -->
37                                 </td>
38                                 <td>
39                                         <!-- TMPL_VAR Name="serialseq" -->
40                                 </td>
41                                 <td>
42                                         <!-- TMPL_IF Name="status1" -->Arrived<!-- /TMPL_IF -->
43                                         <!-- TMPL_IF Name="status2" -->Waited<!-- /TMPL_IF -->
44                                         <!-- TMPL_IF Name="status3" -->Late<!-- /TMPL_IF -->
45                                         <!-- TMPL_IF Name="status4" -->Missing<!-- /TMPL_IF -->
46                                 </td>
47                         </tr>
48                         <!-- /TMPL_LOOP -->
49                 </table>
50         </div>
51 </div>
52         <!--/TMPL_LOOP -->
53 <script language="JavaScript" type="text/javascript">
54 active(<!-- TMPL_VAR name="yearmin" -->);
55 function active(numlayer)
56 {
57         for (i=<!--TMPL_VAR Name="yearmin"-->; i<=<!--TMPL_VAR Name="yearmax"-->; i++ ) {
58                 ong = i;
59                 link = "link"+i;
60                 if (numlayer==i) {
61                         document.getElementById(ong).style.visibility="visible";
62                 } else {
63                         document.getElementById(ong).style.visibility="hidden";
64                 }
65         }
66 }
67
68
69 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->
70