Koha/koha-tmpl/intranet-tmpl/prog/en/includes/modals/checkout_renewals.inc
Tomas Cohen Arazi 5ec4dced13
Bug 23838: (QA follow-up) Move include files
As talked with Martin, this patches were originally developed before we
added the modals/ and str/ dirs, but we need to align it with current
way of doing it. This patch does that.

Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
2022-07-22 12:53:50 -03:00

19 lines
1.1 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!-- Checkout renewals modal -->
<div id="checkoutRenewals" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="checkoutRenewalsLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="closebtn" data-dismiss="modal" aria-hidden="true">×</button>
<h3 id="checkoutRenewalsLabel"> Item renewals</h3>
</div> <!-- /.modal-header -->
<div class="modal-body">
<div id="retrieving" class="alert" style="display:none">Retrieving renewals...</div>
<div id="incomplete" class="alert" style="display:none"></div>
<ul id="results" style="display:none"></ul>
</div> <!-- /.modal-body -->
<div class="modal-footer">
<button class="btn btn-default" data-dismiss="modal" aria-hidden="true">Close</button>
</div> <!-- /.modal-footer -->
</div> <!-- /.modal-content -->
</div> <!-- /.modal-dialog -->
</div> <!-- /#checkoutRenewals -->