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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt (-2 / +5 lines)
Lines 132-140 Link Here
132
      </td>
132
      </td>
133
      <td>[% IF account.itemnumber %][% Branches.GetName( account.item.homebranch ) | html %][% END %]</td>
133
      <td>[% IF account.itemnumber %][% Branches.GetName( account.item.homebranch ) | html %][% END %]</td>
134
    <td>
134
    <td>
135
        <div class="d-flex justify-content-between gap-2">
136
        <span>
135
        [% account.note | html_line_break %]
137
        [% account.note | html_line_break %]
138
        </span>
136
        [% IF CAN_user_updatecharges_edit_notes %]
139
        [% IF CAN_user_updatecharges_edit_notes %]
137
            <button type="button" data-bs-toggle="modal" data-bs-target="#editNoteModal" data-accountline="[% account.accountlines_id | html %]" data-note="[% account.note | html %]" class="btn btn-default btn-xs edit-action" ><i class="fa-solid fa-pen"></i> Edit</button>
140
            <button type="button" data-bs-toggle="modal" data-bs-target="#editNoteModal" data-accountline="[% account.accountlines_id | html %]" data-note="[% account.note | html %]" class="btn btn-xs btn-link edit-action" style="padding: 0;"><i class="fa-solid fa-pen"></i> Edit</button>
141
        </div>
138
        [% END %]
142
        [% END %]
139
    </td>
143
    </td>
140
      [% IF account.amount <= 0 %]<td class="credit" style="text-align: right;">[% ELSE %]<td class="debit" style="text-align: right;">[% END %][% account.amount | $Price %]</td>
144
      [% IF account.amount <= 0 %]<td class="credit" style="text-align: right;">[% ELSE %]<td class="debit" style="text-align: right;">[% END %][% account.amount | $Price %]</td>
141
- 

Return to bug 37211