Bug 15758: Koha::Libraries - Remove GetBranchName
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / members / discharges.tt
1 [% USE Branches %]
2 [% INCLUDE 'doc-head-open.inc' %]
3 <title>Koha &rsaquo; Patrons &rsaquo; Pending discharge requests</title>
4 [% INCLUDE 'doc-head-close.inc' %]
5 </head>
6 <body id="pat_discharges" class="pat">
7 [% INCLUDE 'header.inc' %]
8 [% INCLUDE 'patron-search.inc' %]
9
10 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/members/members-home.pl">Patrons</a> &rsaquo; Pending discharge requests</div>
11
12 <div id="doc2" class="yui-t7">
13 <div id="bd">
14   <div id="yui-main">
15     [% IF pending_discharges %]
16       <h2>Pending discharge requests</h2>
17       <div id="pending_updates">
18         <table>
19           <thead>
20             <tr>
21               <th>Patron</th>
22               <th>Allow</th>
23             </tr>
24           </thead>
25           <tbody>
26             [% FOR d IN pending_discharges %]
27               <tr>
28                 <td><a href="/cgi-bin/koha/members/discharge.pl?borrowernumber=[% d.borrower.borrowernumber %]">[% d.borrower.surname %], [% d.borrower.firstname %]</a></td>
29                 <td><a href="/cgi-bin/koha/members/discharges.pl?op=allow&borrowernumber=[% d.borrower.borrowernumber %]">Allow</a></td>
30               </tr>
31             [% END %]
32           </tbody>
33         </table>
34       </div>
35     [% ELSE %]
36       <div class="dialog message">
37         <p>There are no pending discharge requests.</p>
38       </div>
39     [% END %]
40   </div>
41 </div>
42 [% INCLUDE 'intranet-bottom.inc' %]