Merge branch 'bug_9850' into 3.14-master
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / members / notices.tt
1 [% USE KohaDates %]
2 [% INCLUDE 'doc-head-open.inc' %]
3 <title>Sent notices for [% INCLUDE 'patron-title.inc' %]</title>
4 [% INCLUDE 'doc-head-close.inc' %]
5 <link rel="stylesheet" type="text/css" href="[% themelang %]/css/datatables.css" />
6 <script type="text/javascript" src="[% themelang %]/lib/jquery/plugins/jquery.dataTables.min.js"></script>
7 [% INCLUDE 'datatables-strings.inc' %]
8 <script type="text/javascript" src="[% themelang %]/js/datatables.js"></script>
9 <script type="text/javascript">
10 //<![CDATA[
11     $(document).ready(function() {
12     $("#noticestable").dataTable($.extend(true, {}, dataTablesDefaults, {
13         "aaSorting": [[ 3, "desc" ]],
14         "aoColumns": [ null,null,null,{ "sType": "title-string" } ],
15         "aLengthMenu": [[10, 20, 50, 100, -1], [10, 20, 50, 100, "All"]],
16         "iDisplayLength": 20,
17         "sPaginationType": "four_button"
18     }));
19
20     $(".notice").hide();
21     $(".notice-title").click(function(e){
22         $(this).next(".notice").toggle();
23         e.preventDefault();
24     });
25     
26     });
27 //]]>
28 </script>
29 <style type="text/css">
30     p.notice { display: none; }
31     a.notice-title { font-weight: bold; display: block; }
32 </style>
33 </head>
34 <body id="pat_notices" class="pat">
35 [% INCLUDE 'header.inc' %]
36 [% INCLUDE 'patron-search.inc' %]
37
38 <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>
39
40 <div id="doc3" class="yui-t2">
41     <div id="bd">
42     <div id="yui-main">
43     <div class="yui-b">
44 [% INCLUDE 'members-toolbar.inc' %]
45 <h1>Sent notices for [% INCLUDE 'patron-title.inc' %]</h1>
46
47 [% IF ( QUEUED_MESSAGES ) %]
48     <table id="noticestable">
49         <thead>
50             <tr>
51                 <th>Notice</th>
52                 <th>Type</th>
53                 <th>Status</th>
54                 <th>Time</th>
55             </tr>
56         </thead>
57         <tbody>
58             [% FOREACH QUEUED_MESSAGE IN QUEUED_MESSAGES %]
59             <tr>
60                 <td>
61             <a class="notice-title" href="#">[% QUEUED_MESSAGE.subject %]</a>
62             <p class="notice">
63                 [% QUEUED_MESSAGE.content FILTER html_line_break %]
64             </p>
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 %][% 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 %][% END %]
79         </td>
80         <td><span title="[% QUEUED_MESSAGE.time_queued %]">[% QUEUED_MESSAGE.time_queued | $KohaDates with_hours => 1 %]</span></td>
81             </tr>
82             [% END %]
83         </tbody>
84     </table>
85 [% ELSE %]
86     <div class="dialog message">There is no record of any messages that have been sent to this patron.</div>
87 [% END %]
88
89 </div>
90 </div>
91
92 <div class="yui-b">
93 [% INCLUDE 'circ-menu.inc' %]
94 </div>
95 </div>
96 [% INCLUDE 'intranet-bottom.inc' %]