mirror of
https://github.com/valitydev/Cortex-Analyzers.git
synced 2024-11-08 01:48:53 +00:00
47 lines
1.4 KiB
HTML
47 lines
1.4 KiB
HTML
<div class="panel panel-danger" ng-if="!success">
|
|
<div class="panel-heading">
|
|
<strong>{{(artifact.data || artifact.attachment.name) | fang}}</strong>
|
|
</div>
|
|
<div class="panel-body">
|
|
{{content.errorMessage}}
|
|
</div>
|
|
</div>
|
|
|
|
<div class="panel panel-info" ng-if="success" ng-init="recordsLimit=20">
|
|
<div class="panel-heading">
|
|
<strong>{{(artifact.data || artifact.attachment.name) | fang}}</strong>
|
|
<a ng-show="::content.records.length > 20" class="pull-right" href ng-click="recordsLimit=undefined">View All ({{::content.records.length}})</a>
|
|
</div>
|
|
<div class="panel-body">
|
|
<p>
|
|
DNSDB Domain Name History Report <em>(RRSET)</em>
|
|
</p>
|
|
<table class="table table-hover">
|
|
<thead>
|
|
<tr>
|
|
<th width="50">#</th>
|
|
<th>bailiwick</th>
|
|
<th>count</th>
|
|
<th>rdata</th>
|
|
<th>rrname</th>
|
|
<th width="120">time first</th>
|
|
<th width="120">time last</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody ng-repeat="row in content.records | limitTo:recordsLimit">
|
|
<tr>
|
|
<td>{{$index+1}}</td>
|
|
<td>{{row.bailiwick}}</td>
|
|
<td>{{row.count}}</td>
|
|
<td class="wrap">
|
|
<div ng-repeat="rdata in row.rdata track by $index">{{rdata}}</div>
|
|
</td>
|
|
<td class="wrap">{{row.rrname}}</td>
|
|
<td>{{(row.zone_time_first || row.time_first) | shortDate}}</td>
|
|
<td>{{(row.zone_time_last || row.time_last) | shortDate}}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|