You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
114 lines
3.4 KiB
114 lines
3.4 KiB
<div class="modal-header">
|
|
<h4 class="modal-title"><?php echo $jkl["hd251"];?></h4>
|
|
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
|
</div>
|
|
<div class="modal-body">
|
|
|
|
<div class="box">
|
|
<div class="box-body">
|
|
|
|
<div class="card">
|
|
<div class="card-header card-header-text card-header-rose">
|
|
<div class="card-text">
|
|
<h4 class="card-title"><?php echo $jkl["hd191"];?></h4>
|
|
</div>
|
|
</div>
|
|
<div class="card-body">
|
|
|
|
<form class="jak-ajaxform" method="post" action="<?php echo $_SERVER['REQUEST_URI']; ?>">
|
|
|
|
<div class="row">
|
|
<div class="col-10">
|
|
|
|
<div class="form-group">
|
|
<label for="ticketid" class="control-label"><?php echo $jkl["hd191"];?></label>
|
|
<input type="text" name="ticketid" id="ticketid" class="form-control">
|
|
</div>
|
|
|
|
</div>
|
|
<div class="col-2">
|
|
|
|
<button type="submit" class="btn btn-primary ls-submit"><?php echo $jkl["hd252"];?></button>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<div class="card">
|
|
<div class="card-header card-header-text card-header-info">
|
|
<div class="card-text">
|
|
<h4 class="card-title"><?php echo $jkl["hd253"];?></h4>
|
|
</div>
|
|
</div>
|
|
<div class="card-body table-responsive">
|
|
<table class="table table-hover">
|
|
<thead class="text-warning">
|
|
<th><?php echo $jkl['hd191'];?></th>
|
|
<th><?php echo $jkl['g221'];?></th>
|
|
<th><?php echo $jkl['i70'];?></th>
|
|
<th><?php echo $jkl['i67'];?></th>
|
|
</thead>
|
|
<tbody>
|
|
<?php foreach ($CLI_TICKET as $v) { ?>
|
|
<tr>
|
|
<td>#<?php echo $v["id"];?></td>
|
|
<td><a href="javascript:void(0)" data-tid="<?php echo $v["id"];?>" class="jak-ticketmerge"><?php echo $v["subject"];?></a></td>
|
|
<td><?php echo JAK_base::jakTimesince($v["initiated"], JAK_DATEFORMAT, JAK_TIMEFORMAT);?></td>
|
|
<td><?php echo JAK_base::jakTimesince($v["updated"], JAK_DATEFORMAT, JAK_TIMEFORMAT);?></td>
|
|
</tr>
|
|
<?php } ?>
|
|
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
<div class="box-footer">
|
|
|
|
<div class="jak-thankyou"></div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button type="button" class="btn btn-default" data-dismiss="modal"><?php echo $jkl["g180"];?></button>
|
|
</div>
|
|
|
|
<script type="text/javascript" src="../js/contact.js"></script>
|
|
|
|
<script type="text/javascript">
|
|
|
|
$(document).ready(function() {
|
|
|
|
$('.jak-ticketmerge').click(function() {
|
|
var ticketid = $(this).data("tid");
|
|
$('#ticketid').val(ticketid);
|
|
$('.jak-ajaxform').submit();
|
|
|
|
$('#jakModal').on('hidden.bs.modal', function() {
|
|
location.reload();
|
|
});
|
|
|
|
});
|
|
|
|
$('.ls-submit').click(function() {
|
|
|
|
$('#jakModal').on('hidden.bs.modal', function() {
|
|
location.reload();
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
ls.main_url = "<?php echo BASE_URL;?>";
|
|
ls.lsrequest_uri = "<?php echo JAK_PARSE_REQUEST;?>";
|
|
ls.ls_submit = "<?php echo $jkl['g4'];?>";
|
|
ls.ls_submitwait = "<?php echo $jkl['g67'];?>";
|
|
</script>
|
|
|