Add the ability to edit ticket reply types to puiblic or internal, note there is no client email option here

This commit is contained in:
johnnyq
2024-09-17 14:55:02 -04:00
parent 7b2566b654
commit eaee42f1f5
2 changed files with 13 additions and 1 deletions

View File

@@ -13,6 +13,17 @@
<div class="modal-body bg-white">
<div class="form-group">
<div class="btn-group btn-block btn-group-toggle" data-toggle="buttons">
<label class="btn btn-outline-secondary active">
<input type="radio" name="ticket_reply_type" value="Internal" <?php if ($ticket_reply_type == 'Internal') { echo "checked"; } ?>>Internal Note
</label>
<label class="btn btn-outline-secondary">
<input type="radio" name="ticket_reply_type" value="Public" <?php if ($ticket_reply_type == 'Public') { echo "checked"; } ?>>Public Comment
</label>
</div>
</div>
<div class="form-group">
<textarea class="form-control tinymce" name="ticket_reply"><?php echo nullable_htmlentities($ticket_reply); ?></textarea>
</div>