1
0
Fork 0
arangodb/frontend/js/templates/logsView.ejs

86 lines
2.6 KiB
Plaintext

<div id="logContent">
<ul id="logNav" class="nav nav-tabs">
<li><a href="#all" data-toggle="pill" id="all-switch">All</a></li>
<li><a href="#info" data-toggle="pill" id="info-switch">Info</a></li>
<li><a href="#error" data-toggle="tab" id="error-switch">Error</a></li>
<li><a href="#warning" data-toggle="tab" id="warning-switch">Warning</a></li>
<li><a href="#debug" data-toggle="tab" id="debug-switch">Debug</a></li>
</ul>
<div class="tab-content">
<div class="tab-pane active" id="all">
<table cellpadding="0" cellspacing="0" border="0" class="display" id="logTableID">
<thead>
<tr>
<th>Loglevel</th>
<th>Date</th>
<th class="logContent">Message</th>
</tr>
</thead>
</table>
</div>
<div class="tab-pane" id="info">
<table cellpadding="0" cellspacing="0" border="0" class="display" id="infoTableID" width="100%">
<thead>
<tr>
<th>Loglevel</th>
<th>Date</th>
<th class="logContent">Message</th>
</tr>
</thead>
</table>
</div>
<div class="tab-pane" id="error">
<table cellpadding="0" cellspacing="0" border="0" class="display" id="critTableID" width="100%">
<thead>
<tr>
<th>Loglevel</th>
<th>Date</th>
<th class="logContent">Message</th>
</tr>
</thead>
</table>
</div>
<div class="tab-pane" id="warning">
<table cellpadding="0" cellspacing="0" border="0" class="display" id="warnTableID" width="100%">
<thead>
<tr>
<th>Loglevel</th>
<th>Date</th>
<th class="logContent">Message</th>
</tr>
</thead>
</table>
</div>
<div class="tab-pane" id="debug">
<table cellpadding="0" cellspacing="0" border="0" class="display" id="debugTableID" width="100%">
<thead>
<tr>
<th>Loglevel</th>
<th>Date</th>
<th class="logContent">Message</th>
</tr>
</thead>
</table>
</div>
</div>
<div id="logToolbar">
<div id="logPages">
</div>
<div id="logButtons">
<button class="enabled" id="logTableID_last"><img src="/_admin/html/img/rnd_br_first_icon16.png"></button>
<button class="enabled" id="logTableID_next"><img src="/_admin/html/img/rnd_br_prev_icon16.png"></button>
<button class="enabled" id="logTableID_prev"><img src="/_admin/html/img/rnd_br_next_icon16.png"></button>
<button class="enabled" id="logTableID_first"><img src="/_admin/html/img/rnd_br_last_icon16.png"></button>
</div>
</div>
</div>