This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2022-01-03 12:40:30 +00:00
|
|
|
<div class="modal fade" id="actionModal" tabindex="-1" style="display: none;" aria-hidden="true">
|
2022-01-04 11:56:28 +00:00
|
|
|
<div class="modal-dialog modal-fullscreen">
|
2022-01-03 12:40:30 +00:00
|
|
|
<div class="modal-content">
|
|
|
|
|
|
|
|
<div class="modal-header">
|
2022-01-04 11:56:28 +00:00
|
|
|
<h5 class="modal-title">New Action</h5>
|
2022-01-03 12:40:30 +00:00
|
|
|
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<form action="{{ url_for('inventory.devices.lot_devices_add') }}" method="post">
|
|
|
|
{{ form_lot_device.csrf_token }}
|
|
|
|
<div class="modal-body">
|
|
|
|
Please write a name of a lot
|
|
|
|
<input class="devicesList" type="hidden" name="devices" />
|
|
|
|
<p class="text-danger">
|
2022-01-04 11:56:28 +00:00
|
|
|
You need select first some device before to do one action
|
2022-01-03 12:40:30 +00:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="modal-footer">
|
|
|
|
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
|
2022-01-04 11:56:28 +00:00
|
|
|
<input type="submit" class="btn btn-primary d-none" value="Create" />
|
2022-01-03 12:40:30 +00:00
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|