2013-07-12 18:10:17 +00:00
|
|
|
{block name=content}
|
|
|
|
<div class="row-fluid sortable ui-sortable">
|
2014-09-03 10:22:14 +00:00
|
|
|
<div class="box col-md-12">
|
|
|
|
<div class="box-inner">
|
2013-07-12 18:10:17 +00:00
|
|
|
<div class="box-header well" data-original-title="">
|
2013-07-13 01:46:15 +00:00
|
|
|
<h2><i class="icon-tag"></i> Log of Ticket #{$ticket_id}</h2>
|
2013-07-12 18:10:17 +00:00
|
|
|
</div>
|
|
|
|
<div class="box-content">
|
|
|
|
<div class="row-fluid">
|
2013-07-13 01:46:15 +00:00
|
|
|
<legend>Title: <a href="index.php?page=show_ticket&id={$ticket_id}">{$ticket_title}</a></legend>
|
2013-07-12 18:10:17 +00:00
|
|
|
<table class="table table-striped table-bordered bootstrap-datatable datatable">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>ID</th>
|
|
|
|
<th>Timestamp</th>
|
2013-07-13 14:41:52 +00:00
|
|
|
<th>Query</th>
|
2013-07-12 18:10:17 +00:00
|
|
|
</tr>
|
2014-09-03 01:08:57 +00:00
|
|
|
</thead>
|
2013-07-12 18:10:17 +00:00
|
|
|
<tbody>
|
2013-07-13 01:46:15 +00:00
|
|
|
{foreach from=$ticket_logs item=log}
|
2013-07-12 18:10:17 +00:00
|
|
|
<tr>
|
2013-07-13 01:46:15 +00:00
|
|
|
<td>{$log.tLogId}</td>
|
2013-07-13 21:18:49 +00:00
|
|
|
<td><span title="{$log.timestamp_elapsed}" data-rel="tooltip" data-placement="right">{$log.timestamp}</span></td>
|
2013-07-13 14:41:52 +00:00
|
|
|
<td>{$log.query}</td>
|
2013-07-12 18:10:17 +00:00
|
|
|
</tr>
|
|
|
|
{/foreach}
|
2014-09-03 01:08:57 +00:00
|
|
|
|
2013-07-12 18:10:17 +00:00
|
|
|
</tbody>
|
2014-09-03 01:08:57 +00:00
|
|
|
</table>
|
2013-07-12 18:10:17 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2014-09-03 10:22:14 +00:00
|
|
|
</div>
|
2013-07-12 18:10:17 +00:00
|
|
|
</div><!--/span-->
|
|
|
|
</div><!--/row-->
|
|
|
|
{/block}
|