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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/neworderbiblio.tt (-10 / +30 lines)
Lines 1-7 Link Here
1
[% INCLUDE 'doc-head-open.inc' %]
1
[% INCLUDE 'doc-head-open.inc' %]
2
<title>Koha &rsaquo; Acquisitions &rsaquo; Search existing records</title>
2
<title>Koha &rsaquo; Acquisitions &rsaquo; Search existing records</title>
3
<link rel="stylesheet" type="text/css" href="[% themelang %]/css/datatables.css" />
3
[% INCLUDE 'greybox.inc' %]
4
[% INCLUDE 'greybox.inc' %]
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 resultst = $("#resultst").dataTable($.extend(true, {}, dataTablesDefaults, {
13
        'bPaginate': false,
14
        'bFilter': false,
15
        'bInfo': false,
16
        'bSort': false,
17
    } ) );
18
 });
19
 //]]>
20
</script>
5
</head>
21
</head>
6
<body id="acq_neworderbiblio" class="acq">
22
<body id="acq_neworderbiblio" class="acq">
7
[% INCLUDE 'header.inc' %]
23
[% INCLUDE 'header.inc' %]
Lines 34-47 Link Here
34
50
35
[% IF ( total ) %]
51
[% IF ( total ) %]
36
<div class="searchresults">
52
<div class="searchresults">
37
    <table>
53
    <table id="resultst">
38
    <tr>
54
    <thead>
39
       <th>Summary</th>
55
      <tr>
40
       <th>Publisher</th>
56
         <th>Summary</th>
41
       <th>Copyright</th>
57
         <th>Publisher</th>
42
       <th colspan="2">&nbsp;</th>
58
         <th>Copyright</th>
43
    </tr>
59
         <th>&nbsp;</th>
44
    [% FOREACH biblio IN resultsloop %]
60
         <th>&nbsp;</th>
61
      </tr>
62
    </thead>
63
    <tbody>
64
      [% FOREACH biblio IN resultsloop %]
45
        <tr>
65
        <tr>
46
            <td>
66
            <td>
47
                <p><span class="title">[% biblio.title |html %]</span>
67
                <p><span class="title">[% biblio.title |html %]</span>
Lines 68-74 Link Here
68
            </a>
88
            </a>
69
            </td>
89
            </td>
70
        </tr>
90
        </tr>
71
    [% END %]
91
      [% END %]
92
    </tbody>
72
    </table>
93
    </table>
73
</div>
94
</div>
74
[% END %]
95
[% END %]
75
- 

Return to bug 8100