-
Notifications
You must be signed in to change notification settings - Fork 385
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f32ea56
commit e1c19be
Showing
1 changed file
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<div class="panel panel-danger" ng-if="!success"> | ||
<div class="panel-heading"> | ||
<strong>{{artifact.data | fang}}</strong> | ||
</div> | ||
<div class="panel-body"> | ||
{{content.errorMessage}} | ||
</div> | ||
</div> | ||
|
||
|
||
<div class="panel panel-info" ng-if="success"> | ||
<div class="panel-heading"> | ||
Staxx Report | ||
</div> | ||
<div class="panel-body"> | ||
|
||
<dl class="dl-horizontal" ng-if="content.errortext"> | ||
<dt><i class="fa fa-warning"></i> ERROR: </dt> | ||
<dd class="wrap">{{content.errortext}} </dd> | ||
</dl> | ||
|
||
<dl class="dl-horizontal"> | ||
<dt>Related Hits Found: </dt> | ||
<dd class="wrap">{{content.count}}</dd> | ||
</dl> | ||
|
||
<dl class="dl-horizontal"> | ||
<dt>Last seen: </dt> | ||
<dd class="wrap">{{content.hits[0].date_last}}</dd> | ||
</dl> | ||
|
||
<dl class="dl-horizontal"> | ||
<dt>Last type: </dt> | ||
<dd class="wrap">{{content.hits[0].itype}}</dd> | ||
</dl> | ||
|
||
<dl class="dl-horizontal"> | ||
<dt>Lastest details: </dt> | ||
<dd class="wrap">{{content.hits[0].detail}}</dd> | ||
</dl> | ||
</div> | ||
</div> |