Bug 23673: Add "Updated on" column to patron's notices
[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>Updated on</th>
39         <th>Time created</th>
40             </tr>
41         </thead>
42         <tbody>
43             [% FOREACH QUEUED_MESSAGE IN QUEUED_MESSAGES %]
44             <tr>
45                 <td>
46             <a class="notice-title" data-noticeid="[% QUEUED_MESSAGE.message_id | html %]" href="#">[% QUEUED_MESSAGE.subject | html %]</a>
47             <div id="notice[% QUEUED_MESSAGE.message_id | html %]" class="notice">
48                 <iframe srcdoc="[% QUEUED_MESSAGE.content | html | html_line_break %]"></iframe>
49             </div>
50         </td>
51                 <td>
52             [% IF ( QUEUED_MESSAGE.message_transport_type == 'email' ) %]email
53             [% ELSIF ( QUEUED_MESSAGE.message_transport_type == 'print' ) %]print
54             [% ELSIF ( QUEUED_MESSAGE.message_transport_type == 'feed' ) %]feed
55             [% ELSIF ( QUEUED_MESSAGE.message_transport_type == 'sms' ) %]sms
56             [% ELSE %][% QUEUED_MESSAGE.message_transport_type | html %][% END %]
57         </td>
58                 <td>
59             [% IF ( QUEUED_MESSAGE.status == 'sent' ) %]sent
60             [% ELSIF ( QUEUED_MESSAGE.status == 'pending' ) %]pending
61             [% ELSIF ( QUEUED_MESSAGE.status == 'failed' ) %]failed
62             [% ELSIF ( QUEUED_MESSAGE.status == 'deleted' ) %]deleted
63             [% ELSE %][% QUEUED_MESSAGE.status | html %][% END %]
64             [% IF ( QUEUED_MESSAGE.status != 'pending' ) %]
65             <div id="resend_notice[% QUEUED_MESSAGE.message_id | html %]"  class="notice">
66                 <form action="/cgi-bin/koha/members/notices.pl?borrowernumber=[% borrowernumber | html %]" method="POST">
67                     <input type="hidden" name="op" value="resend_notice" />
68                     <input type="hidden" name="borrowernumber" value="[% borrowernumber | html %]" />
69                     <input type="hidden" name="message_id" value="[% QUEUED_MESSAGE.message_id | html %]" />
70                     <fieldset class="action">
71                         <button class="btn btn-default btn-xs" type="submit">Resend</button>
72                     </fieldset>
73                 </form>
74             </div>
75             [% END %]
76         </td>
77         <td><span title="[% QUEUED_MESSAGE.time_status_changed | html %]">[% QUEUED_MESSAGE.updated_on | $KohaDates  with_hours => 1 %]</span></td>
78         <td><span title="[% QUEUED_MESSAGE.time_queued | html %]">[% QUEUED_MESSAGE.time_queued | $KohaDates  with_hours => 1 %]</span></td>
79             </tr>
80             [% END %]
81         </tbody>
82     </table>
83 [% ELSE %]
84     <div class="dialog message">There is no record of any messages that have been sent to this patron.</div>
85 [% END %]
86
87             </main>
88         </div> <!-- /.col-sm-10.col-sm-push-2 -->
89
90         <div class="col-sm-2 col-sm-pull-10">
91             <aside>
92                 [% INCLUDE 'circ-menu.inc' %]
93             </aside>
94         </div> <!-- /.col-sm-2.col-sm-pull-10 -->
95      </div> <!-- /.row -->
96
97 [% MACRO jsinclude BLOCK %]
98     [% INCLUDE 'datatables.inc' %]
99     <script>
100         $(document).ready(function() {
101             $("#noticestable").dataTable($.extend(true, {}, dataTablesDefaults, {
102                 "aaSorting": [[ 3, "desc" ]],
103                 "aoColumns": [ null,null,null, { "sType": "title-string" } ,{ "sType": "title-string" } ],
104                 "sPaginationType": "full"
105             }));
106
107             $("#noticestable").on("click", ".notice-title", function(e){
108                 e.preventDefault();
109                 var rowid = $(this).data("noticeid");
110                 $("#notice"+rowid).toggle();
111                 $("#resend_notice"+rowid).toggle();
112                 var iframe = $("#notice"+rowid).children('iframe');
113                 // Adding some padding to the height and width to remove scrollbars
114                 var height = iframe.get(0).contentWindow.document.body.scrollHeight + 25;
115                 var width = iframe.get(0).contentWindow.document.body.scrollWidth + 25;
116                 iframe.css({
117                     'width':  width + 'px',
118                     'height': height + 'px'
119                 });
120             });
121         });
122     </script>
123     [% INCLUDE 'str/members-menu.inc' %]
124     [% Asset.js("js/members-menu.js") | $raw %]
125 [% END %]
126
127 [% INCLUDE 'intranet-bottom.inc' %]