100 lines
3.0 KiB
HTML
100 lines
3.0 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 Comment</h3>
|
|
<button
|
|
class="delete is-close-modal-button"
|
|
aria-label="close"
|
|
type="button"
|
|
></button>
|
|
</header>
|
|
<section class="modal-card-body">
|
|
<form id="form--workOrderCommentEdit">
|
|
<input
|
|
id="workOrderCommentEdit--workOrderId"
|
|
name="workOrderId"
|
|
type="hidden"
|
|
value=""
|
|
/>
|
|
<input
|
|
id="workOrderCommentEdit--workOrderCommentId"
|
|
name="workOrderCommentId"
|
|
type="hidden"
|
|
value=""
|
|
/>
|
|
<div class="field">
|
|
<label class="label" for="workOrderCommentEdit--comment"
|
|
>Comment</label
|
|
>
|
|
<div class="control">
|
|
<textarea
|
|
class="textarea"
|
|
id="workOrderCommentEdit--comment"
|
|
name="comment"
|
|
required
|
|
></textarea>
|
|
</div>
|
|
</div>
|
|
<div class="columns">
|
|
<div class="column">
|
|
<div class="field">
|
|
<label
|
|
class="label"
|
|
for="workOrderCommentEdit--commentDateString"
|
|
>Comment Date</label
|
|
>
|
|
<div class="control has-icons-left">
|
|
<input
|
|
class="input"
|
|
id="workOrderCommentEdit--commentDateString"
|
|
name="commentDateString"
|
|
type="date"
|
|
required
|
|
/>
|
|
<span class="icon is-left">
|
|
<i class="fas fa-calendar" aria-hidden="true"></i>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="column">
|
|
<div class="field">
|
|
<label
|
|
class="label"
|
|
for="workOrderCommentEdit--commentTimeString"
|
|
>Comment Time</label
|
|
>
|
|
<div class="control has-icons-left">
|
|
<input
|
|
class="input"
|
|
id="workOrderCommentEdit--commentTimeString"
|
|
name="commentTimeString"
|
|
type="time"
|
|
required
|
|
/>
|
|
<span class="icon is-left">
|
|
<i class="fas fa-clock" aria-hidden="true"></i>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</section>
|
|
<footer class="modal-card-foot is-justify-content-right">
|
|
<div class="buttons">
|
|
<button
|
|
class="button is-success"
|
|
type="submit"
|
|
form="form--workOrderCommentEdit"
|
|
>
|
|
<span class="icon"><i class="fas fa-save" aria-hidden="true"></i></span>
|
|
<span>Update Comment</span>
|
|
</button>
|
|
<button class="button is-close-modal-button" type="button">Cancel</button>
|
|
</div>
|
|
</footer>
|
|
</div>
|
|
</div>
|