Added clock to bottom, changed icons for reply vs cust reply
This commit is contained in:
parent
ee979cf15b
commit
03765bb798
@ -1674,7 +1674,11 @@ function hesk_printTicketReplies()
|
|||||||
$reply['dt'] = hesk_date($reply['dt'], true);
|
$reply['dt'] = hesk_date($reply['dt'], true);
|
||||||
?>
|
?>
|
||||||
<li>
|
<li>
|
||||||
<i class="fa fa-reply bg-blue"></i>
|
<?php if ($reply['staffid']): ?>
|
||||||
|
<i class="fa fa-reply bg-orange"></i>
|
||||||
|
<?php else: ?>
|
||||||
|
<i class="fa fa-share bg-blue"></i>
|
||||||
|
<?php endif; ?>
|
||||||
<div class="timeline-item">
|
<div class="timeline-item">
|
||||||
<span class="time"><i class="fa fa-clock-o"></i> <?php echo $reply['dt']; ?></span>
|
<span class="time"><i class="fa fa-clock-o"></i> <?php echo $reply['dt']; ?></span>
|
||||||
<h3 class="timeline-header"><?php echo $reply['name']; ?></h3>
|
<h3 class="timeline-header"><?php echo $reply['name']; ?></h3>
|
||||||
@ -1693,16 +1697,9 @@ function hesk_printTicketReplies()
|
|||||||
<?php mfh_listAttachments($reply['attachments'], $reply['id'], true); ?>
|
<?php mfh_listAttachments($reply['attachments'], $reply['id'], true); ?>
|
||||||
</div>
|
</div>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
<div class="timeline-footer text-right">
|
<div class="timeline-footer">
|
||||||
<?php echo hesk_getAdminButtonsInTicket(); ?>
|
<div class="row">
|
||||||
</div>
|
<div class="col-md-6">
|
||||||
</div>
|
|
||||||
</li><div class="row ticketMessageContainer">
|
|
||||||
<div class="col-md-3 col-xs-12">
|
|
||||||
<div class="ticketName"></div>
|
|
||||||
</div>
|
|
||||||
<div class="col-md-9 col-xs-12 pushMarginLeft">
|
|
||||||
<div class="ticketMessageTop pushMargin">
|
|
||||||
<?php
|
<?php
|
||||||
/* Staff rating */
|
/* Staff rating */
|
||||||
if ($hesk_settings['rating'] && $reply['staffid']) {
|
if ($hesk_settings['rating'] && $reply['staffid']) {
|
||||||
@ -1712,17 +1709,22 @@ function hesk_printTicketReplies()
|
|||||||
echo '<p class="rate">' . $hesklang['rh'] . '</p>';
|
echo '<p class="rate">' . $hesklang['rh'] . '</p>';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Show "unread reply" message? */
|
/* Show "unread reply" message? */
|
||||||
if ($reply['staffid'] && !$reply['read']) {
|
if ($reply['staffid'] && !$reply['read']) {
|
||||||
echo '<p class="rate">' . $hesklang['unread'] . '</p>';
|
echo '<p class="rate">' . $hesklang['unread'] . '</p>';
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="col-md-6 text-right">
|
||||||
|
<?php echo hesk_getAdminButtonsInTicket(); ?>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
<?php
|
<?php
|
||||||
}
|
}
|
||||||
|
echo '<li><i class="fa fa-clock-o bg-gray"></i></li>';
|
||||||
echo '</ul>';
|
echo '</ul>';
|
||||||
|
|
||||||
return;
|
return;
|
||||||
|
@ -114,3 +114,7 @@
|
|||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.timeline-footer {
|
||||||
|
border-top: 1px solid #f4f4f4;
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user