Bug 21526: uri escape TT variables when used in 'a href'
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / serials / viewalerts.tt
1 [% INCLUDE 'doc-head-open.inc' %]
2 <title>Koha &rsaquo; Serials &rsaquo; Alert subscribers for [% bibliotitle | html %]</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 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/serials/serials-home.pl">Serials</a> &rsaquo; Alert subscribers for <i>[% bibliotitle | html %]</i></div>
10
11 <div class="main container-fluid">
12     <div class="row">
13         <div class="col-sm-10 col-sm-push-2">
14             <main>
15
16 <h1>Alert subscribers for <i>[% bibliotitle | html %]</i></h1>
17
18 <p>
19     <span class="label">Subscription:</span> <a href="subscription-detail.pl?subscriptionid=[% subscriptionid | uri %]">[% bibliotitle | html %] #[% subscriptionid | html %]</a>
20 </p>
21
22 [% IF subscribers.count %]
23     <table>
24         <tr>
25             <th>Patron name</th>
26         </tr>
27         [% FOREACH subscriber IN subscribers %]
28         <tr>
29             <td>
30                 <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% subscriber.borrowernumber | uri %]">[% INCLUDE 'patron-title.inc' patron=subscriber %]</a>
31             </td>
32         </tr>
33         [% END %]
34     </table>
35 [% ELSE %]
36     <p>There are no patrons subscribed to this subscription serial alert.</p>
37 [% END %]
38
39             </main>
40         </div> <!-- /.col-sm-10.col-sm-push-2 -->
41
42         <div class="col-sm-2 col-sm-pull-10">
43             <aside>
44                 [% INCLUDE 'serials-menu.inc' %]
45             </aside>
46         </div> <!-- /.col-sm-2.col-sm-pull-10 -->
47      </div> <!-- /.row -->
48
49 [% INCLUDE 'intranet-bottom.inc' %]