Bug 5917 : Swapping templates over
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / members / notices.tt
1 [% INCLUDE 'doc-head-open.inc' %]
2 <title>Sent notices for [% firstname %] [% surname %]</title>
3 [% INCLUDE 'doc-head-close.inc' %]
4 <script type="text/javascript" src="[% themelang %]/lib/jquery/plugins/jquery.tablesorter.min.js"></script>
5 <script type="text/javascript" language="javascript">
6 //<![CDATA[
7     $(document).ready(function() {
8         $("#noticestable").tablesorter({
9             [% IF ( dateformat == 'metric' ) %]
10                 dateFormat: 'uk'
11             [% END %]
12         });
13     });
14 //]]>
15 </script>
16
17 </head>
18 <body>
19 [% INCLUDE 'header.inc' %]
20 [% INCLUDE 'patron-search.inc' %]
21
22 <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 [% firstname %] [% surname %]</div>
23
24 <div id="doc3" class="yui-t2">
25    
26    <div id="bd">
27         <div id="yui-main">
28         <div class="yui-b">
29 [% INCLUDE 'circ-toolbar.inc' %]
30 <h1>Sent notices for [% firstname %] [% surname %]</h1>
31
32     <table id="noticestable">
33         <thead>
34             <tr>
35                 <th>Subject</th>
36                 <th>Content</th>
37                 <th>Type</th>
38                 <th>Status</th>
39                 <th>Time</th>
40             </tr>
41         </thead>
42         <tbody>
43             [% FOREACH QUEUED_MESSAGE IN QUEUED_MESSAGES %]
44             <tr>
45                 <td>[% QUEUED_MESSAGE.subject %]</td>
46                 <td>[% QUEUED_MESSAGE.content %]</td>
47                 <td>[% QUEUED_MESSAGE.message_transport_type %]</td>
48                 <td>[% QUEUED_MESSAGE.status %]</td>
49                 <td>[% QUEUED_MESSAGE.time_queued %]</td>
50             </tr>
51             [% END %]
52         </tbody>
53     </table>
54
55 </div>
56 </div>
57
58 <div class="yui-b">
59 [% INCLUDE 'circ-menu.inc' %]
60 </div>
61 </div>
62 [% INCLUDE 'intranet-bottom.inc' %]