Lines 94-133
Link Here
|
94 |
</div> |
94 |
</div> |
95 |
|
95 |
|
96 |
<!-- Claims Returned Modal --> |
96 |
<!-- Claims Returned Modal --> |
97 |
|
|
|
98 |
[% PROCESS 'modal-claims-display' %] |
97 |
[% PROCESS 'modal-claims-display' %] |
99 |
<div class="modal fade" id="claims-returned-modal" tabindex="-1" role="dialog" aria-labelledby="claims-returned-modal-label"> |
|
|
100 |
<div class="modal-dialog" role="document"> |
101 |
<div class="modal-content"> |
102 |
<div class="modal-header"> |
103 |
<h4 class="modal-title" id="claims-returned-modal-label">Claim returned</h4> |
104 |
</div> |
105 |
<div class="modal-body"> |
106 |
|
107 |
<div class="form-group"> |
108 |
<label for="claims-returned-notes" class="control-label">Notes</label> |
109 |
<div> |
110 |
<textarea id="claims-returned-notes" class="form-control" rows="3"></textarea> |
111 |
</div> |
112 |
</div> |
113 |
|
114 |
[% IF Koha.Preference('ClaimReturnedChargeFee') == 'ask' %] |
115 |
<div class="form-group"> |
116 |
<div class="checkbox"> |
117 |
<label for="claims-returned-charge-lost-fee"> |
118 |
<input id="claims-returned-charge-lost-fee" type="checkbox" value="1"> |
119 |
Charge lost fee |
120 |
</label> |
121 |
</div> |
122 |
</div> |
123 |
[% END %] |
124 |
|
125 |
<input type="hidden" id="claims-returned-itemnumber" /> |
126 |
</div> |
127 |
<div class="modal-footer"> |
128 |
<button id="claims-returned-modal-btn-submit" type="button" class="btn btn-primary"><i class="fa fa-exclamation-circle"></i> Make claim</button> |
129 |
<button class="btn btn-default deny cancel" href="#" data-dismiss="modal" aria-hidden="true"><i class="fa fa-times"></i> Cancel</button> |
130 |
</div> |
131 |
</div> |
132 |
</div> |
133 |
</div> |
134 |
- |