Bug 26703: serials folder
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / serials / viewalerts.tt
1 [% INCLUDE 'doc-head-open.inc' %]
2 <title>Alert subscribers for [% bibliotitle | html %] &rsaquo; Serials &rsaquo; Koha</title>
3 [% INCLUDE 'doc-head-close.inc' %]
4 </head>
5 <body id="ser_viewalerts" class="ser">
6 [% INCLUDE 'header.inc' %]
7 [% INCLUDE 'serials-search.inc' %]
8
9 <nav id="breadcrumbs" aria-label="Breadcrumb" class="breadcrumb">
10     <ol>
11         <li>
12             <a href="/cgi-bin/koha/mainpage.pl">Home</a>
13         </li>
14         <li>
15             <a href="/cgi-bin/koha/serials/serials-home.pl">Serials</a>
16         </li>
17         <li>
18             <a href="#" aria-current="page">
19                 Alert subscribers for <em>[% bibliotitle | html %]</em>
20             </a>
21         </li>
22     </ol>
23 </nav>
24
25 <div class="main container-fluid">
26     <div class="row">
27         <div class="col-sm-10 col-sm-push-2">
28             <main>
29
30 <h1>Alert subscribers for <em>[% bibliotitle | html %]</em></h1>
31
32 <p>
33     <span class="label">Subscription:</span> <a href="subscription-detail.pl?subscriptionid=[% subscriptionid | uri %]">[% bibliotitle | html %] #[% subscriptionid | html %]</a>
34 </p>
35
36 [% IF subscribers.count %]
37     <table>
38         <tr>
39             <th>Patron name</th>
40         </tr>
41         [% FOREACH subscriber IN subscribers %]
42         <tr>
43             <td>
44                 <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% subscriber.borrowernumber | uri %]">[% INCLUDE 'patron-title.inc' patron=subscriber %]</a>
45             </td>
46         </tr>
47         [% END %]
48     </table>
49 [% ELSE %]
50     <p>There are no patrons subscribed to this subscription serial alert.</p>
51 [% END %]
52
53             </main>
54         </div> <!-- /.col-sm-10.col-sm-push-2 -->
55
56         <div class="col-sm-2 col-sm-pull-10">
57             <aside>
58                 [% INCLUDE 'serials-menu.inc' %]
59             </aside>
60         </div> <!-- /.col-sm-2.col-sm-pull-10 -->
61      </div> <!-- /.row -->
62
63 [% INCLUDE 'intranet-bottom.inc' %]