Bug 22553: Unchecking a subpermission does not uncheck the top level permission
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / members / notices.tt
1 [% USE raw %]
2 [% USE Asset %]
3 [% USE Koha %]
4 [% USE AuthorisedValues %]
5 [% USE Branches %]
6 [% USE KohaDates %]
7 [% SET footerjs = 1 %]
8 [% INCLUDE 'doc-head-open.inc' %]
9 <title>Sent notices for [% INCLUDE 'patron-title.inc' no_html = 1 %]</title>
10 [% INCLUDE 'doc-head-close.inc' %]
11 <style>
12     .notice { display: none; }
13     .notice-title { font-weight: bold; display: block; }
14 </style>
15 </head>
16
17 <body id="pat_notices" class="pat">
18 [% INCLUDE 'header.inc' %]
19 [% INCLUDE 'patron-search.inc' %]
20
21 <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; Sent notices for [% INCLUDE 'patron-title.inc' %]</div>
22
23 <div class="main container-fluid">
24     <div class="row">
25         <div class="col-sm-10 col-sm-push-2">
26             <main>
27
28 [% INCLUDE 'members-toolbar.inc' %]
29 <h1>Sent notices for [% INCLUDE 'patron-title.inc' %]</h1>
30
31 [% IF ( QUEUED_MESSAGES ) %]
32     <table id="noticestable">
33         <thead>
34             <tr>
35                 <th>Notice</th>
36                 <th>Type</th>
37                 <th>Status</th>
38                 <th>Time</th>
39             </tr>
40         </thead>
41         <tbody>
42             [% FOREACH QUEUED_MESSAGE IN QUEUED_MESSAGES %]
43             <tr>
44                 <td>
45             <a class="notice-title" data-noticeid="[% QUEUED_MESSAGE.message_id | html %]" href="#">[% QUEUED_MESSAGE.subject | html %]</a>
46             <div id="notice[% QUEUED_MESSAGE.message_id | html %]" class="notice">
47                 <iframe srcdoc="[% QUEUED_MESSAGE.content | html | html_line_break %]"></iframe>
48             </div>
49         </td>
50                 <td>
51             [% IF ( QUEUED_MESSAGE.message_transport_type == 'email' ) %]email
52             [% ELSIF ( QUEUED_MESSAGE.message_transport_type == 'print' ) %]print
53             [% ELSIF ( QUEUED_MESSAGE.message_transport_type == 'feed' ) %]feed
54             [% ELSIF ( QUEUED_MESSAGE.message_transport_type == 'sms' ) %]sms
55             [% ELSE %][% QUEUED_MESSAGE.message_transport_type | html %][% END %]
56         </td>
57                 <td>
58             [% IF ( QUEUED_MESSAGE.status == 'sent' ) %]sent
59             [% ELSIF ( QUEUED_MESSAGE.status == 'pending' ) %]pending
60             [% ELSIF ( QUEUED_MESSAGE.status == 'failed' ) %]failed
61             [% ELSIF ( QUEUED_MESSAGE.status == 'deleted' ) %]deleted
62             [% ELSE %][% QUEUED_MESSAGE.status | html %][% END %]
63             [% IF ( QUEUED_MESSAGE.status != 'pending' ) %]
64             <div id="resend_notice[% QUEUED_MESSAGE.message_id | html %]"  class="notice">
65                 <form action="/cgi-bin/koha/members/notices.pl?borrowernumber=[% borrowernumber | html %]" method="POST">
66                     <input type="hidden" name="op" value="resend_notice" />
67                     <input type="hidden" name="borrowernumber" value="[% borrowernumber | html %]" />
68                     <input type="hidden" name="message_id" value="[% QUEUED_MESSAGE.message_id | html %]" />
69                     <fieldset class="action">
70                         <button class="btn btn-default btn-xs" type="submit">Resend</button>
71                     </fieldset>
72                 </form>
73             </div>
74             [% END %]
75         </td>
76         <td><span title="[% QUEUED_MESSAGE.time_queued | html %]">[% QUEUED_MESSAGE.time_queued | $KohaDates  with_hours => 1 %]</span></td>
77             </tr>
78             [% END %]
79         </tbody>
80     </table>
81 [% ELSE %]
82     <div class="dialog message">There is no record of any messages that have been sent to this patron.</div>
83 [% END %]
84
85             </main>
86         </div> <!-- /.col-sm-10.col-sm-push-2 -->
87
88         <div class="col-sm-2 col-sm-pull-10">
89             <aside>
90                 [% INCLUDE 'circ-menu.inc' %]
91             </aside>
92         </div> <!-- /.col-sm-2.col-sm-pull-10 -->
93      </div> <!-- /.row -->
94
95 [% MACRO jsinclude BLOCK %]
96     [% INCLUDE 'datatables.inc' %]
97     <script>
98         $(document).ready(function() {
99             $("#noticestable").dataTable($.extend(true, {}, dataTablesDefaults, {
100                 "aaSorting": [[ 3, "desc" ]],
101                 "aoColumns": [ null,null,null,{ "sType": "title-string" } ],
102                 "sPaginationType": "four_button"
103             }));
104
105             $("#noticestable").on("click", ".notice-title", function(e){
106                 e.preventDefault();
107                 var rowid = $(this).data("noticeid");
108                 $("#notice"+rowid).toggle();
109                 $("#resend_notice"+rowid).toggle();
110                 var iframe = $("#notice"+rowid).children('iframe');
111                 // Adding some padding to the height and width to remove scrollbars
112                 var height = iframe.get(0).contentWindow.document.body.scrollHeight + 25;
113                 var width = iframe.get(0).contentWindow.document.body.scrollWidth + 25;
114                 iframe.css({
115                     'width':  width + 'px',
116                     'height': height + 'px'
117                 });
118             });
119         });
120     </script>
121     [% INCLUDE 'str/members-menu.inc' %]
122     [% Asset.js("js/members-menu.js") | $raw %]
123 [% END %]
124
125 [% INCLUDE 'intranet-bottom.inc' %]