Koha/koha-tmpl/intranet-tmpl/prog/en/modules/members/notices.tmpl
Henri-Damien LAURENT 984e197e5d Adding notices.pl which enables staff to see what notices have been sent to user
Signed-off-by: Galen Charlton <gmcharlt@gmail.com>
2009-09-30 11:22:23 +02:00

62 lines
1.8 KiB
Cheetah

<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
<title>Sent notices for <!-- TMPL_VAR NAME="firstname" --> <!-- TMPL_VAR NAME="surname" --></title>
<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
<script type="text/javascript" src="<!-- TMPL_VAR name="themelang" -->/lib/jquery/plugins/jquery.tablesorter.min.js"></script>
<script type="text/javascript" language="javascript">
//<![CDATA[
$(document).ready(function() {
$("#noticestable").tablesorter({
<!-- TMPL_IF EXPR="dateformat eq 'metric'" -->
dateFormat: 'uk'
<!-- /TMPL_IF -->
});
});
//]]>
</script>
</head>
<body>
<!-- TMPL_INCLUDE NAME="header.inc" -->
<!-- TMPL_INCLUDE NAME="patron-search.inc" -->
<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>
<div id="doc3" class="yui-t2">
<div id="bd">
<div id="yui-main">
<div class="yui-b">
<!-- TMPL_INCLUDE NAME="circ-toolbar.inc" -->
<h1>Sent notices for <!-- TMPL_VAR NAME="firstname" --> <!-- TMPL_VAR NAME="surname" --></h1>
<table id="noticestable">
<thead>
<tr>
<th>Subject</th>
<th>Content</th>
<th>Type</th>
<th>Status</th>
<th>Time</th>
</tr>
</thead>
<tbody>
<!-- TMPL_LOOP NAME="QUEUED_MESSAGES" -->
<tr>
<td><!-- TMPL_VAR NAME="subject" --></td>
<td><!-- TMPL_VAR NAME="content" --></td>
<td><!-- TMPL_VAR NAME="message_transport_type" --></td>
<td><!-- TMPL_VAR NAME="status" --></td>
<td><!-- TMPL_VAR NAME="time_queued" --></td>
</tr>
<!-- /TMPL_LOOP -->
</tbody>
</table>
</div>
</div>
<div class="yui-b">
<!-- TMPL_INCLUDE NAME="circ-menu.inc" -->
</div>
</div>
<!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->