79b6d6713b2fc8f27a6cbff26a7a236e900d785a
[koha-ffzg.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 <nav id="breadcrumbs" aria-label="Breadcrumb" class="breadcrumb">
22     <ol>
23         <li>
24             <a href="/cgi-bin/koha/mainpage.pl">Home</a>
25         </li>
26         <li>
27             <a href="/cgi-bin/koha/members/members-home.pl">Patrons</a>
28         </li>
29         <li>
30             <a href="#" aria-current="page">
31                 Sent notices for [% INCLUDE 'patron-title.inc' %]
32             </a>
33         </li>
34     </ol>
35 </nav>
36
37 <div class="main container-fluid">
38     <div class="row">
39         <div class="col-sm-10 col-sm-push-2">
40             <main>
41
42 [% INCLUDE 'members-toolbar.inc' %]
43 <h1>Sent notices for [% INCLUDE 'patron-title.inc' %]</h1>
44
45 [% IF ( QUEUED_MESSAGES ) %]
46     <table id="noticestable">
47         <thead>
48             <tr>
49                 <th>Notice</th>
50                 <th>Type</th>
51                 <th>Status</th>
52                 <th>Updated on</th>
53                 <th>Time created</th>
54                 <th>Delivery note</th>
55             </tr>
56         </thead>
57         <tbody>
58             [% FOREACH QUEUED_MESSAGE IN QUEUED_MESSAGES %]
59             <tr>
60                 <td>
61             <a class="notice-title" data-noticeid="[% QUEUED_MESSAGE.message_id | html %]" href="#">[% QUEUED_MESSAGE.subject | html %]</a>
62             <div id="notice[% QUEUED_MESSAGE.message_id | html %]" class="notice">
63                 <iframe srcdoc="[% QUEUED_MESSAGE.content | html | html_line_break %]"></iframe>
64             </div>
65         </td>
66                 <td>
67             [% IF ( QUEUED_MESSAGE.message_transport_type == 'email' ) %]email
68             [% ELSIF ( QUEUED_MESSAGE.message_transport_type == 'print' ) %]print
69             [% ELSIF ( QUEUED_MESSAGE.message_transport_type == 'feed' ) %]feed
70             [% ELSIF ( QUEUED_MESSAGE.message_transport_type == 'sms' ) %]sms
71             [% ELSE %][% QUEUED_MESSAGE.message_transport_type | html %][% END %]
72         </td>
73                 <td>
74             [% IF ( QUEUED_MESSAGE.status == 'sent' ) %]sent
75             [% ELSIF ( QUEUED_MESSAGE.status == 'pending' ) %]pending
76             [% ELSIF ( QUEUED_MESSAGE.status == 'failed' ) %]failed
77             [% ELSIF ( QUEUED_MESSAGE.status == 'deleted' ) %]deleted
78             [% ELSE %][% QUEUED_MESSAGE.status | html %][% END %]
79             [% IF ( QUEUED_MESSAGE.status != 'pending' ) %]
80             <div id="resend_notice[% QUEUED_MESSAGE.message_id | html %]"  class="notice">
81                 <form action="/cgi-bin/koha/members/notices.pl?borrowernumber=[% borrowernumber | html %]" method="POST">
82                     <input type="hidden" name="op" value="resend_notice" />
83                     <input type="hidden" name="borrowernumber" value="[% borrowernumber | html %]" />
84                     <input type="hidden" name="message_id" value="[% QUEUED_MESSAGE.message_id | html %]" />
85                     <fieldset class="action">
86                         <button class="btn btn-default btn-xs" type="submit">Resend</button>
87                     </fieldset>
88                 </form>
89             </div>
90             [% END %]
91         </td>
92         <td data-order="[% QUEUED_MESSAGE.updated_on | html %]">[% QUEUED_MESSAGE.updated_on | $KohaDates  with_hours => 1 %]</td>
93         <td data-order="[% QUEUED_MESSAGE.time_queued | html %]">[% QUEUED_MESSAGE.time_queued | $KohaDates  with_hours => 1 %]</td>
94         <td>
95         [% IF ( QUEUED_MESSAGE.error_code ) %]
96             [% IF ( QUEUED_MESSAGE.error_code == "INVALID_BORNUMBER" ) %]Invalid borrowernumber [% borrowernumber | html %]
97             [% ELSIF ( QUEUED_MESSAGE.error_code == 'NO_EMAIL' ) %]Unable to find an email address for this borrower
98             [% ELSIF ( QUEUED_MESSAGE.error_code == 'MISSING_SMS' ) %]Missing SMS number
99             [% ELSIF ( QUEUED_MESSAGE.error_code == 'DUPLICATE_MESSAGE' ) %]Message is duplicate
100             [% ELSIF ( QUEUED_MESSAGE.error_code == 'NO_NOTES' ) %]No notes from SMS driver
101             [% ELSE %]Error occurred while sending email.
102             [% END %]
103         [% END %]
104         </td>
105         </tr>
106             [% END %]
107         </tbody>
108     </table>
109 [% ELSE %]
110     <div class="dialog message">There is no record of any messages that have been sent to this patron.</div>
111 [% END %]
112
113             </main>
114         </div> <!-- /.col-sm-10.col-sm-push-2 -->
115
116         <div class="col-sm-2 col-sm-pull-10">
117             <aside>
118                 [% INCLUDE 'circ-menu.inc' %]
119             </aside>
120         </div> <!-- /.col-sm-2.col-sm-pull-10 -->
121      </div> <!-- /.row -->
122
123 [% MACRO jsinclude BLOCK %]
124     [% INCLUDE 'datatables.inc' %]
125     <script>
126         $(document).ready(function() {
127             $("#noticestable").dataTable($.extend(true, {}, dataTablesDefaults, {
128                 "aaSorting": [[ 3, "desc" ]],
129                 "sPaginationType": "full"
130             }));
131
132             $("#noticestable").on("click", ".notice-title", function(e){
133                 e.preventDefault();
134                 var rowid = $(this).data("noticeid");
135                 $("#notice"+rowid).toggle();
136                 $("#resend_notice"+rowid).toggle();
137                 var iframe = $("#notice"+rowid).children('iframe');
138                 // Adding some padding to the height and width to remove scrollbars
139                 var height = iframe.get(0).contentWindow.document.body.scrollHeight + 25;
140                 var width = iframe.get(0).contentWindow.document.body.scrollWidth + 25;
141                 iframe.css({
142                     'width':  width + 'px',
143                     'height': height + 'px'
144                 });
145             });
146         });
147     </script>
148     [% INCLUDE 'str/members-menu.inc' %]
149     [% Asset.js("js/members-menu.js") | $raw %]
150 [% END %]
151
152 [% INCLUDE 'intranet-bottom.inc' %]