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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/clubs-table.inc (-3 / +7 lines)
Lines 1-4 Link Here
1
<table id="clubs-table" class="selections-table">
1
[% IF destination == 'holds' %]
2
    <table id="clubs-table" class="selections-table">
3
[% ELSE %]
4
    <table id="clubs-table">
5
[% END %]
2
    <thead>
6
    <thead>
3
        <tr>
7
        <tr>
4
            <th>Name</th>
8
            <th>Name</th>
Lines 26-35 Link Here
26
                    [% SET data_url = "/cgi-bin/koha/reserve/request.pl?club=" _ c.id _ "&amp;biblionumber=" _ biblionumber %]
30
                    [% SET data_url = "/cgi-bin/koha/reserve/request.pl?club=" _ c.id _ "&amp;biblionumber=" _ biblionumber %]
27
                [% END %]
31
                [% END %]
28
                <tr class="clickable" data-url="[% data_url | html %]">
32
                <tr class="clickable" data-url="[% data_url | html %]">
33
                    <td><a href="[% data_url | url %]">[% c.name | html %]</a></td>
29
            [% ELSE %]
34
            [% ELSE %]
30
                <tr>
35
                <tr>
36
                    <td>[% c.name | html %]</td>
31
            [% END %]
37
            [% END %]
32
                <td><a href="[% data_url | url %]">[% c.name | html %]</a></td>
33
                <td>[% c.club_template.name | html %]</td>
38
                <td>[% c.club_template.name | html %]</td>
34
                <td>[% c.description | html %]</td>
39
                <td>[% c.description | html %]</td>
35
                [% UNLESS destination == 'holds' %]
40
                [% UNLESS destination == 'holds' %]
36
- 

Return to bug 29521