View | Details | Raw Unified | Return to bug 6063
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/messaging.tmpl (-3 / +16 lines)
Lines 1-6 Link Here
1
<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
1
<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2
<title>Koha &rsaquo; Patrons &rsaquo; <!-- TMPL_IF NAME="unknowuser" -->Patron does not exist<!-- TMPL_ELSE -->Patron Details for <!-- TMPL_VAR NAME="firstname" --> <!-- TMPL_VAR NAME="surname" --> (<!-- TMPL_VAR NAME="cardnumber" -->)<!-- /TMPL_IF --></title>
2
<title>Koha &rsaquo; Patrons &rsaquo; <!-- TMPL_IF NAME="unknowuser" -->Patron does not exist<!-- TMPL_ELSE -->Patron Details for <!-- TMPL_VAR NAME="firstname" --> <!-- TMPL_VAR NAME="surname" --> (<!-- TMPL_VAR NAME="cardnumber" -->)<!-- /TMPL_IF --></title>
3
<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
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">//<![CDATA[
6
$(document).ready(function() {
7
	<!-- TMPL_IF NAME="message_queue" -->
8
	$("#mqt").tablesorter();
9
	<!-- /TMPL_IF -->
10
}); 
11
//]]>
12
</script>
13
4
</head>
14
</head>
5
<body>
15
<body>
6
<!-- TMPL_INCLUDE NAME="header.inc" -->
16
<!-- TMPL_INCLUDE NAME="header.inc" -->
Lines 42-50 Link Here
42
   </div>
52
   </div>
43
<!-- TMPL_ELSE -->
53
<!-- TMPL_ELSE -->
44
54
45
<table>
55
<table id="mqt" class="tablesorter">
46
  <caption>Message Queue</caption>
56
  <caption>Message Queue</caption>
47
  <tr><th>Type</th><th>Subject</th><th>Status</th><th>Time Prepared</th></tr>
57
  <thead>
58
      <tr><th>Type</th><th>Subject</th><th>Status</th><th>Time Prepared</th></tr>
59
  </thead>
60
  <tbody>
48
<!-- TMPL_IF NAME="message_queue" -->
61
<!-- TMPL_IF NAME="message_queue" -->
49
  <!-- TMPL_LOOP name="message_queue" -->
62
  <!-- TMPL_LOOP name="message_queue" -->
50
    <tr><td><!-- TMPL_VAR NAME="message_transport_type" --></td><td><!-- TMPL_VAR NAME="subject" --></td><td><!-- TMPL_VAR NAME="status" --></td><td><!-- TMPL_VAR NAME="time_queued" --></td></tr>
63
    <tr><td><!-- TMPL_VAR NAME="message_transport_type" --></td><td><!-- TMPL_VAR NAME="subject" --></td><td><!-- TMPL_VAR NAME="status" --></td><td><!-- TMPL_VAR NAME="time_queued" --></td></tr>
Lines 52-57 Link Here
52
<!-- TMPL_ELSE -->
65
<!-- TMPL_ELSE -->
53
  <tr><td colspan="4">There is no record of any messages that have been sent to this patron.</td></tr>
66
  <tr><td colspan="4">There is no record of any messages that have been sent to this patron.</td></tr>
54
<!-- /TMPL_IF -->
67
<!-- /TMPL_IF -->
68
  </tbody>
55
</table>
69
</table>
56
70
57
</div>
71
</div>
58
- 

Return to bug 6063