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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/hold-group.tt (-3 / +2 lines)
Lines 6-12 Link Here
6
  <h1>Holds group ([% hold_group.id | html %])</h1>
6
  <h1>Holds group ([% hold_group.id | html %])</h1>
7
  <div id="main">
7
  <div id="main">
8
    [% holds = hold_group.holds %]
8
    [% holds = hold_group.holds %]
9
    [% IF holds.size %]
9
    [% IF holds.count %]
10
      <table>
10
      <table>
11
        <thead>
11
        <thead>
12
          <tr>
12
          <tr>
Lines 19-25 Link Here
19
          [% FOREACH hold IN holds %]
19
          [% FOREACH hold IN holds %]
20
            [% biblio = hold.biblio %]
20
            [% biblio = hold.biblio %]
21
            <tr>
21
            <tr>
22
              <td><a href="/cgi-bin/koha/hold.request.pl?biblionumber=[% biblio.biblionumber | uri %]">[% biblio.title | html %]</a></td>
22
              <td><a href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% biblio.biblionumber | uri %]">[% biblio.title | html %]</a></td>
23
              <td>[% hold.priority | html %]</td>
23
              <td>[% hold.priority | html %]</td>
24
              <td>[% hold.reservenotes | html %]</td>
24
              <td>[% hold.reservenotes | html %]</td>
25
            </tr>
25
            </tr>
26
- 

Return to bug 15516