adding location sql field to location column, with branch & callnumber
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / catalogue / issuehistory.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Koha &rsaquo; Catalogue Issue History</title>
3 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
4
5 <!-- TMPL_INCLUDE NAME="menus.inc" -->
6 <!-- TMPL_INCLUDE NAME="menu-catalogue.inc" -->
7
8     <h1>Issue history for <!-- TMPL_VAR NAME="title" --> (<!-- TMPL_VAR NAME="author" -->) </h1>
9
10 <!-- TMPL_INCLUDE NAME="action-catalogue.inc" -->
11     
12 <div class="searchresults">
13     <!-- TMPL_IF NAME="issues" -->
14         <br />
15         <b>Has been issued <!-- TMPL_VAR NAME="total" --> times</b>
16         <table>
17             <th>
18                 Date
19             </th>
20             <th>
21                 Surname
22             </th>
23             <th>
24                 Firstname
25             </th>
26             <th>
27                 Issuing branch
28             </th>
29             <th>
30                 Renew
31             </th>
32             <th>
33                 Date due
34             </th>
35             <th>
36                 Return date
37             </th>
38         <!-- TMPL_LOOP NAME="issues" -->
39             <tr>
40                 <td>
41                     <!-- TMPL_IF NAME="timestamp" -->
42                         <!-- TMPL_VAR NAME="timestamp" -->
43                     <!-- TMPL_ELSE -->
44                         &nbsp;
45                     <!-- /TMPL_IF -->
46                 </td>
47                 <td>
48                     <!-- TMPL_IF NAME="surname" -->
49                         <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=<!-- TMPL_VAR NAME="borrowernumber" -->">
50                             <!-- TMPL_VAR NAME="surname" -->
51                         </a>
52                     <!-- TMPL_ELSE -->
53                         &nbsp;
54                     <!-- /TMPL_IF -->
55                 </td>
56                 <td>
57                     <!-- TMPL_IF NAME="firstname" -->
58                         <!-- TMPL_VAR NAME="firstname" -->
59                     <!-- TMPL_ELSE -->
60                         &nbsp;
61                     <!-- /TMPL_IF -->
62                 </td>
63                 <td>
64                     <!-- TMPL_IF NAME="issuingbranch" -->
65                         <!-- TMPL_VAR NAME="issuingbranch" -->
66                     <!-- TMPL_ELSE -->
67                         &nbsp;
68                     <!-- /TMPL_IF -->
69                 </td>
70                 <td>
71                     <!-- TMPL_IF NAME="renewals"-->
72                         YES<br />
73                         <small>
74                             <!-- TMPL_IF NAME="lastreneweddate" -->
75                                 last on: <!-- TMPL_VAR NAME="lastreneweddate" -->
76                             <!-- /TMPL_IF -->
77                         </small>
78                     <!-- TMPL_ELSE -->
79                         NO
80                     <!-- /TMPL_IF -->
81                 </td>
82                 <td>
83                     <!-- TMPL_IF NAME="date_due" -->
84                         <!-- TMPL_VAR NAME="date_due" -->
85                     <!-- TMPL_ELSE -->
86                         &nbsp;
87                     <!-- /TMPL_IF -->
88                 </td>
89                 <td>
90                     <!-- TMPL_IF NAME="returndate" -->
91                         <!-- TMPL_VAR NAME="returndate" -->
92                     <!-- TMPL_ELSE -->
93                         &nbsp;
94                     <!-- /TMPL_IF -->
95                 </td>
96            </tr>
97         <!-- /TMPL_LOOP -->
98     <!-- TMPL_ELSE -->
99         <br />
100         <b><!-- TMPL_VAR NAME="title" -->(<!-- TMPL_VAR NAME="author" -->) <span class="problem">has never been issued.</span></b>
101         
102     <!-- /TMPL_IF -->
103 </div>
104
105 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->