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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/ordered.tt (-3 / +15 lines)
Lines 1-7 Link Here
1
[% USE KohaDates %]
1
[% USE KohaDates %]
2
[% INCLUDE 'doc-head-open.inc' %]
2
[% INCLUDE 'doc-head-open.inc' %]
3
<title>Koha &rsaquo; Acquisitions &rsaquo; Ordered</title>
3
<title>Koha &rsaquo; Acquisitions &rsaquo; Ordered</title>
4
<link rel="stylesheet" type="text/css" href="[% themelang %]/css/datatables.css" />
4
[% INCLUDE 'doc-head-close.inc' %]
5
[% INCLUDE 'doc-head-close.inc' %]
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
    var spent = $("#spent").dataTable($.extend(true, {}, dataTablesDefaults, {
13
        "sPaginationType": "four_button"
14
    } ) );
15
 });
16
 //]]>
17
</script>
5
</head>
18
</head>
6
<body>
19
<body>
7
[% INCLUDE 'header.inc' %]
20
[% INCLUDE 'header.inc' %]
Lines 31-37 Link Here
31
	<th> Subtotal </th>
44
	<th> Subtotal </th>
32
    </tr>
45
    </tr>
33
    </thead>
46
    </thead>
34
47
    <tbody>
35
[% FOREACH order IN ordered %]
48
[% FOREACH order IN ordered %]
36
    [% IF loop.odd %]
49
    [% IF loop.odd %]
37
        <tr class="highlight">
50
        <tr class="highlight">
Lines 64-70 Link Here
64
	</td>
77
	</td>
65
    </tr>
78
    </tr>
66
[% END %]
79
[% END %]
67
80
    </tbody>
68
    <tfoot>
81
    <tfoot>
69
    <tr>
82
    <tr>
70
        <td> Total </td>
83
        <td> Total </td>
71
- 

Return to bug 5345