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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/holdshistory.tt (-3 / +9 lines)
Lines 4-9 Link Here
4
[% USE AuthorisedValues %]
4
[% USE AuthorisedValues %]
5
[% USE Branches %]
5
[% USE Branches %]
6
[% USE ColumnsSettings %]
6
[% USE ColumnsSettings %]
7
[% USE ItemTypes %]
7
[% SET footerjs = 1 %]
8
[% SET footerjs = 1 %]
8
[% INCLUDE 'doc-head-open.inc' %]
9
[% INCLUDE 'doc-head-open.inc' %]
9
<title>Holds history for [% INCLUDE 'patron-title.inc' no_html = 1 %]</title>
10
<title>Holds history for [% INCLUDE 'patron-title.inc' no_html = 1 %]</title>
Lines 43-49 Link Here
43
        <th class="title-string">Expiration date</th>
44
        <th class="title-string">Expiration date</th>
44
        <th class="title-string">Waiting date</th>
45
        <th class="title-string">Waiting date</th>
45
        <th class="title-string">Cancellation date</th>
46
        <th class="title-string">Cancellation date</th>
46
        <th>Item type</th>
47
        <th>Requested item type</th>
47
        <th>Status</th>
48
        <th>Status</th>
48
      </thead>
49
      </thead>
49
      <tbody>
50
      <tbody>
Lines 74-80 Link Here
74
                  <span title="0000-00-00"></span>
75
                  <span title="0000-00-00"></span>
75
              [% END %]
76
              [% END %]
76
          </td>
77
          </td>
77
          <td>[% hold.itemtype %]</td>
78
          <td>
79
              [% IF hold.itemtype %]
80
                  [% ItemTypes.GetDescription( hold.itemtype ) %]
81
              [% ELSE %]
82
                  Any item type
83
              [% END %]
84
          </td>
78
          <td>
85
          <td>
79
          [% IF hold.found == 'F' %]
86
          [% IF hold.found == 'F' %]
80
              Fulfilled
87
              Fulfilled
81
- 

Return to bug 20806