Bug 34571: Remove use of "onclick" for ExpandField in cataloguing editors
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / serials / viewalerts.tt
1 [% USE raw %]
2 [% INCLUDE 'doc-head-open.inc' %]
3 <title>Alert subscribers for [% bibliotitle | html %] &rsaquo; Serials &rsaquo; Koha</title>
4 [% INCLUDE 'doc-head-close.inc' %]
5 </head>
6 <body id="ser_viewalerts" class="ser">
7 [% WRAPPER 'header.inc' %]
8     [% INCLUDE 'serials-search.inc' %]
9 [% END %]
10
11 [% WRAPPER 'sub-header.inc' %]
12     [% WRAPPER breadcrumbs %]
13         [% WRAPPER breadcrumb_item %]
14             <a href="/cgi-bin/koha/serials/serials-home.pl">Serials</a>
15         [% END %]
16         [% WRAPPER breadcrumb_item %]
17             <a href="/cgi-bin/koha/serials/subscription-detail.pl?subscriptionid=[% subscriptionid | uri %]"><em>[% bibliotitle | html %]</em></a>
18         [% END %]
19         [% WRAPPER breadcrumb_item bc_active= 1 %]
20             <span>Alert subscribers</span>
21         [% END %]
22     [% END #/ WRAPPER breadcrumbs %]
23 [% END #/ WRAPPER sub-header.inc %]
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                 <p>
32                     <span class="label">Subscription:</span> <a href="subscription-detail.pl?subscriptionid=[% subscriptionid | uri %]">[% bibliotitle | html %] #[% subscriptionid | html %]</a>
33                 </p>
34
35                 <div class="page-section">
36
37                     [% IF subscribers.count %]
38                         <table>
39                             <tr>
40                                 <th>Patron name</th>
41                             </tr>
42                             [% FOREACH subscriber IN subscribers %]
43                             <tr>
44                                 <td>
45                                     <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% subscriber.borrowernumber | uri %]">[% INCLUDE 'patron-title.inc' patron=subscriber %]</a>
46                                 </td>
47                             </tr>
48                             [% END %]
49                         </table>
50                     [% ELSE %]
51                         <p>There are no patrons subscribed to this subscription serial alert.</p>
52                     [% END %]
53                 </div> <!-- /.page-section -->
54
55             </main>
56         </div> <!-- /.col-sm-10.col-sm-push-2 -->
57
58         <div class="col-sm-2 col-sm-pull-10">
59             <aside>
60                 [% INCLUDE 'serials-menu.inc' %]
61             </aside>
62         </div> <!-- /.col-sm-2.col-sm-pull-10 -->
63      </div> <!-- /.row -->
64
65 [% INCLUDE 'intranet-bottom.inc' %]