Bug 20290: Fix capitalization of "Routling List"
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / members / routing-lists.tt
1 [% USE Koha %]
2 [% USE AuthorisedValues %]
3 [% USE Branches %]
4 [% SET footerjs = 1 %]
5 [% INCLUDE 'doc-head-open.inc' %]
6 <title>Subscription routing lists for [% INCLUDE 'patron-title.inc' no_html = 1 %]</title>
7 [% INCLUDE 'doc-head-close.inc' %]
8 </head>
9
10 <body id="pat_routing_lists" class="pat">
11 [% INCLUDE 'header.inc' %]
12 [% INCLUDE 'patron-search.inc' %]
13
14 <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; Subscription routing lists for [% INCLUDE 'patron-title.inc' %]</div>
15
16 <div id="doc3" class="yui-t2">
17     <div id="bd">
18     <div id="yui-main">
19     <div class="yui-b">
20 [% INCLUDE 'members-toolbar.inc' %]
21
22 <!-- Search Bar -->
23 <p class="tip">Search subscriptions:</p>
24 <form action="/cgi-bin/koha/serials/serials-home.pl" method="get">[% IF ( routing ) %]<input type="hidden" name="routing" value="[% routing %]" />[% END %]<input type="hidden" name="searched" value="1" /> <label for="ISSN_filter">ISSN:</label> <input type="text" size="10" maxlength="11" name="ISSN_filter" id="ISSN_filter" value="[% ISSN_filter %]" /> <label for="title_filter">Title:</label> <input type="text" size="20" maxlength="40" name="title_filter" id="title_filter" value="[% title_filter %]" /><input type="submit" value="Search" class="submit" />
25 </form>
26 <!-- Search Bar End -->
27
28 <h1>
29 [% IF ( countSubscrip ) %]
30 [% countSubscrip %] Subscription routing list(s)
31 [% ELSE %]
32 0 Subscription routing lists
33 [% END %]
34 </h1>
35
36 <div id="subscriptions">
37 [% IF ( subscripLoop ) %]
38 <table id="subscriptiont">
39               <thead>
40                 <tr>
41                   <th>Subscription title</th>
42                   <th>Routing list</th>
43                 </tr>
44               </thead>
45               <tbody>
46 [% FOREACH subscripLoop IN subscripLoop %]
47 <tr>
48     <td>
49     <a href="/cgi-bin/koha/serials/subscription-detail.pl?subscriptionid=[% subscripLoop.subscriptionid %]"><strong>
50     [% subscripLoop.title %]
51     </strong>
52                     </a>
53                   </td>
54                   <td>
55                     <a href="/cgi-bin/koha/serials/routing.pl?subscriptionid=[% subscripLoop.subscriptionid %]"><strong>
56                     Edit routing list
57                       </strong>
58                     </a>
59                     <input type="hidden" name="biblionumber" value="[% biblionumber %]" />
60                     <input type="hidden" name="borrowernumber" value="[% patron.borrowernumber %]" />
61                   </td>
62                 </tr>
63                 [% END %]
64                 </tbody>
65             </table>
66             </form>
67           [% ELSE %]
68           <p>Patron does not belong to any subscription routing lists.</p>
69           <input type="hidden" name="biblionumber" value="[% biblionumber %]" />
70                     <input type="hidden" name="borrowernumber" value="[% patron.borrowernumber %]" />
71                     [% END %]
72
73 </div>
74
75
76
77
78 </div>
79 </div>
80
81 <div class="yui-b">
82 [% INCLUDE 'circ-menu.inc' %]
83 </div>
84 </div>
85
86 [% MACRO jsinclude BLOCK %]
87     <script type="text/javascript" src="[% interface %]/[% theme %]/js/members-menu_[% KOHA_VERSION %].js"></script>
88 [% END %]
89
90 [% INCLUDE 'intranet-bottom.inc' %]