sunrise-cms/public/html/lot-editLotStatus.html

41 lines
1.8 KiB
HTML

<div class="modal" role="dialog">
<div class="modal-background"></div>
<div class="modal-card">
<header class="modal-card-head">
<h3 class="modal-card-title">
Edit <span class="alias" data-alias="Lot"></span> Status
</h3>
<button class="delete is-close-modal-button" aria-label="close" type="button"></button>
</header>
<section class="modal-card-body">
<form id="form--lotStatusEdit">
<input id="lotStatusEdit--lotId" name="lotId" type="hidden" value="" />
<div class="field">
<label class="label" for="lotStatusEdit--lotName"><span class="alias" data-alias="Lot"></span> Name</label>
<div class="control">
<input class="input is-readonly" id="lotStatusEdit--lotName" readonly/>
</div>
</div>
<div class="field">
<label class="label" for="lotStatusEdit--lotStatusId">Status</label>
<div class="control">
<div class="select is-fullwidth">
<select id="lotStatusEdit--lotStatusId" name="lotStatusId">
<option value="">(No Status)</option>
</select>
</div>
</div>
</div>
</form>
</section>
<footer class="modal-card-foot justify-right">
<button class="button is-success" type="submit" form="form--lotStatusEdit">
<span class="icon"><i class="fas fa-save" aria-hidden="true"></i></span>
<span>Update Status</span>
</button>
<button class="button is-close-modal-button" type="button">Cancel</button>
</footer>
</div>
</div>