Bug 5917 / Bug 6085 : Fixing not being able to change language
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / members / notices.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Sent notices for <!-- TMPL_VAR NAME="firstname" --> <!-- TMPL_VAR NAME="surname" --></title>
3 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
4 <script type="text/javascript" src="<!-- TMPL_VAR name="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             <!-- TMPL_IF EXPR="dateformat eq 'metric'" -->
10                 dateFormat: 'uk'
11             <!-- /TMPL_IF -->
12         });
13     });
14 //]]>
15 </script>
16
17 </head>
18 <body>
19 <!-- TMPL_INCLUDE NAME="header.inc" -->
20 <!-- TMPL_INCLUDE NAME="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 <!-- TMPL_VAR NAME="firstname" --> <!-- TMPL_VAR NAME="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 <!-- TMPL_INCLUDE NAME="circ-toolbar.inc" -->
30 <h1>Sent notices for <!-- TMPL_VAR NAME="firstname" --> <!-- TMPL_VAR NAME="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             <!-- TMPL_LOOP NAME="QUEUED_MESSAGES" -->
44             <tr>
45                 <td><!-- TMPL_VAR NAME="subject" --></td>
46                 <td><!-- TMPL_VAR NAME="content" --></td>
47                 <td><!-- TMPL_VAR NAME="message_transport_type" --></td>
48                 <td><!-- TMPL_VAR NAME="status" --></td>
49                 <td><!-- TMPL_VAR NAME="time_queued" --></td>
50             </tr>
51             <!-- /TMPL_LOOP -->
52         </tbody>
53     </table>
54
55 </div>
56 </div>
57
58 <div class="yui-b">
59 <!-- TMPL_INCLUDE NAME="circ-menu.inc" -->
60 </div>
61 </div>
62 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->