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.
2021-12-29 12:02:39 +00:00
|
|
|
<div class="modal fade" id="addingLotModal" tabindex="-1" style="display: none;" aria-hidden="true">
|
|
|
|
<div class="modal-dialog">
|
|
|
|
<div class="modal-content">
|
2021-12-30 11:41:37 +00:00
|
|
|
|
2021-12-29 12:02:39 +00:00
|
|
|
<div class="modal-header">
|
|
|
|
<h5 class="modal-title">Adding to a lot</h5>
|
|
|
|
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
|
|
|
</div>
|
2021-12-30 11:41:37 +00:00
|
|
|
|
|
|
|
<form action="/inventory/lot/devices/add" method="post">
|
|
|
|
{# form.csrf_token #}
|
|
|
|
<div class="modal-body">
|
|
|
|
Please write a name of a lot
|
|
|
|
<select class="form-control selectpicker" id="selectLot" name="lot" data-live-search="true">
|
|
|
|
{% for lot in lots %}
|
|
|
|
<option value="{{ lot.id }}">{{ lot.name }}</option>
|
|
|
|
{% endfor %}
|
|
|
|
</select>
|
|
|
|
<input class="devicesList" type="hidden" name="devices" />
|
|
|
|
<p class="text-danger">
|
|
|
|
You need select first some device for adding this in a lot
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="modal-footer">
|
|
|
|
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
|
|
|
|
<input type="submit" class="btn btn-primary d-none" value="Save changes" />
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
|
2021-12-29 12:02:39 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-12-29 12:44:28 +00:00
|
|
|
|
|
|
|
<script>
|
2021-12-30 11:41:37 +00:00
|
|
|
//$(function() {
|
|
|
|
// $('#selectLot').selectpicker();
|
|
|
|
//});
|
2021-12-29 12:44:28 +00:00
|
|
|
</script>
|