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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/relatives-issues-table.inc (+25 lines)
Line 0 Link Here
1
[% USE Koha %]
2
[% IF ( relatives_issues_count ) %]
3
    <div id="relatives-issues">
4
        <table id="relatives-issues-table" style="width: 100% !Important;">
5
            <thead>
6
                <tr>
7
                    <th scope="col">Due date (unformatted, hidden)</th>
8
                    <th scope="col">Due date</th>
9
                    <th scope="col">Title</th>
10
                    <th scope="col">Item type</th>
11
                    <th scope="col">Collection code</th>
12
                    <th scope="col">Location</th>
13
                    <th scope="col">Checked out on (hidden, unformatted)</th>
14
                    <th scope="col">Checked out on</th>
15
                    <th scope="col">Checked out from</th>
16
                    <th scope="col">Call no</th>
17
                    <th scope="col">Charge</th>
18
                    <th scope="col">Fine</th>
19
                    <th scope="col">Price</th>
20
                    <th scope="col">Patron</th>
21
                </tr>
22
            </thead>
23
        </table>
24
    </div>
25
[% END %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt (-23 / +1 lines)
Lines 858-886 Link Here
858
858
859
                        [% INCLUDE "checkouts-table.inc" %]
859
                        [% INCLUDE "checkouts-table.inc" %]
860
860
861
                        [% IF ( relatives_issues_count ) %]
861
                        [% INCLUDE "relatives-issues-table.inc" %]
862
                            <div id="relatives-issues">
863
                                <table id="relatives-issues-table">
864
                                    <thead>
865
                                        <tr>
866
                                            <th scope="col">Due date (unformatted, hidden)</th>
867
                                            <th scope="col">Due date</th>
868
                                            <th scope="col">Title</th>
869
                                            <th scope="col">Item type</th>
870
                                            <th scope="col">Collection code</th>
871
                                            <th scope="col">Location</th>
872
                                            <th scope="col">Checked out on</th>
873
                                            <th scope="col">Checked out from</th>
874
                                            <th scope="col">Call no</th>
875
                                            <th scope="col">Charge</th>
876
                                            <th scope="col">Fine</th>
877
                                            <th scope="col">Price</th>
878
                                            <th scope="col">Patron</th>
879
                                        </tr>
880
                                    </thead>
881
                                </table>
882
                            </div> <!-- /#relatives-issues -->
883
                        [% END %]
884
862
885
                        [% IF CAN_user_clubs && ( enrollable.count || enrollments.count ) %]
863
                        [% IF CAN_user_clubs && ( enrollable.count || enrollments.count ) %]
886
                            <div id="clubs-tab">
864
                            <div id="clubs-tab">
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt (-23 / +1 lines)
Lines 723-750 Link Here
723
723
724
                        [% INCLUDE "checkouts-table.inc" %]
724
                        [% INCLUDE "checkouts-table.inc" %]
725
725
726
                        [% IF ( relatives_issues_count ) %]
726
                        [% INCLUDE "relatives-issues-table.inc" %]
727
                            <div id="relatives-issues">
728
                                <table id="relatives-issues-table" style="width: 100% !Important;">
729
                                    <thead>
730
                                        <tr>
731
                                            <th scope="col">Due date hidden not formatted</th>
732
                                            <th scope="col">Due date</th>
733
                                            <th scope="col">Title</th>
734
                                            <th scope="col">Item type</th>
735
                                            <th scope="col">Location</th>
736
                                            <th scope="col">Checked out on</th>
737
                                            <th scope="col">Checked out from</th>
738
                                            <th scope="col">Call no</th>
739
                                            <th scope="col">Charge</th>
740
                                            <th scope="col">Fine</th>
741
                                            <th scope="col">Price</th>
742
                                            <th scope="col">Patron</th>
743
                                        </tr>
744
                                    </thead>
745
                                </table>
746
                            </div>
747
                        [% END %]
748
727
749
                        <div id="finesandcharges">
728
                        <div id="finesandcharges">
750
                            [% IF ( fines ) %]
729
                            [% IF ( fines ) %]
751
- 

Return to bug 23408