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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/patron-return-claims.inc (-26 / +27 lines)
Lines 1-25 Link Here
1
<p id="return-claims-controls">
1
<div id="return-claims" role="tabpanel" class="tab-pane">
2
    [% IF ( patron.return_claims.resolved.count > 0 || patron.return_claims.unresolved.count > 0 ) %]
2
    <p id="return-claims-controls">
3
        <a id="show_all_claims" class="ctrl_link" href="#">Show all [% patron.return_claims.count | html %] claim(s)</a>
3
        [% IF ( patron.return_claims.resolved.count > 0 || patron.return_claims.unresolved.count > 0 ) %]
4
        <a id="show_unresolved_claims" class="ctrl_link disabled" href="#">Show [% patron.return_claims.unresolved.count | html %] unresolved claims</a>
4
            <a id="show_all_claims" class="ctrl_link" href="#">Show all [% patron.return_claims.count | html %] claim(s)</a>
5
    [% ELSE %]
5
            <a id="show_unresolved_claims" class="ctrl_link disabled" href="#">Show [% patron.return_claims.unresolved.count | html %] unresolved claims</a>
6
        <a id="show_all_claims" class="ctrl_link" href="#"></a>
6
        [% ELSE %]
7
        <a id="show_unresolved_claims" class="ctrl_link disabled" href="#"></a>
7
            <a id="show_all_claims" class="ctrl_link" href="#"></a>
8
    [% END %]
8
            <a id="show_unresolved_claims" class="ctrl_link disabled" href="#"></a>
9
</p>
9
        [% END %]
10
<table id="return-claims-table" class="table table-bordered table-striped">
10
    </p>
11
    <thead>
11
    <table id="return-claims-table" class="table table-bordered table-striped">
12
        <tr>
12
        <thead>
13
            <th class="return-claim-id">Claim ID</th>
13
            <tr>
14
            <th class="return-claim-id">Resolved?</th>
14
                <th class="return-claim-id">Claim ID</th>
15
            <th class="return-claim-record-title anti-the">Title</th>
15
                <th class="return-claim-id">Resolved?</th>
16
            <th class="return-claim-notes">Notes</th>
16
                <th class="return-claim-record-title anti-the">Title</th>
17
            <th class="return-claim-created-on">Created on</th>
17
                <th class="return-claim-notes">Notes</th>
18
            <th class="return-claim-created-on">Created on</th>
18
                <th class="return-claim-created-on">Created on</th>
19
            <th class="return-claim-updated-on">Updated on</th>
19
                <th class="return-claim-created-on">Created on</th>
20
            <th class="return-claim-updated-on">Updated on</th>
20
                <th class="return-claim-updated-on">Updated on</th>
21
            <th class="return-claim-resolution">Resolution</th>
21
                <th class="return-claim-updated-on">Updated on</th>
22
            <th class="return-claim-actions NoSort">&nbsp;</th>
22
                <th class="return-claim-resolution">Resolution</th>
23
        </tr>
23
                <th class="return-claim-actions NoSort">&nbsp;</th>
24
    </thead>
24
            </tr>
25
</table>
25
        </thead>
26
    </table>
27
</div>
26
- 

Return to bug 35112