blob: 239286f83b3969d339ceec5f9abc6a1e50b17bbc (
plain) (
tree)
|
|
{{{pagenav}}}
<table class="table table-striped table-condensed">
<thead>
<th width="1"></th>
<th class="text-center">{{lang_when}}</th>
<th class="text-center">{{lang_event}}</th>
<th width="1">{{lang_details}}</th>
</thead>
<tbody>
{{#list}}
<tr>
<td><span class="glyphicon glyphicon-{{icon}}" title="{{logtypeid}}"></span></td>
<td class="text-center" nowrap="nowrap">{{date}}</td>
<td class="{{color}}">{{description}}</td>
<td class="text-center">{{#extra}}
<a class="btn btn-default btn-xs" onclick="$('#details-body').html($('#extra-{{logid}}').html())" data-toggle="modal" data-target="#myModal">»</a>
<div class="hidden" id="extra-{{logid}}">{{extra}}</div>
{{/extra}}</td>
</tr>
{{/list}}
</tbody>
</table>
{{{pagenav}}}
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
<h4 class="modal-title" id="myModalLabel">{{lang_details}}</h4>
</div>
<div class="modal-body">
<pre id="details-body"></pre>
</div>
</div>
</div>
</div>
|