-
Notifications
You must be signed in to change notification settings - Fork 640
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#53 add long report template for Abuse_Finder
- Loading branch information
1 parent
c85ab53
commit 0f46616
Showing
1 changed file
with
23 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,23 @@ | ||
<div class="panel panel-info" ng-if="success"> | ||
<div class="panel-heading"> | ||
Abuse Finder Information for <strong>{{artifact.data}}</strong> | ||
</div> | ||
<div class="panel-body"> | ||
<dl class="dl-horizontal" ng-if="content.abuse_finder.names"> | ||
<dt>Names:</dt> | ||
<dd> | ||
<div ng-repeat="name in content.abuse_finder.names"> | ||
{{name}} | ||
</div> | ||
</dd> | ||
</dl> | ||
<dl class="dl-horizontal" ng-if=".abuse_finder.names"> | ||
<dt>Abuse addresses:</dt> | ||
<dd> | ||
<div ng-repeat="abuse in content.abuse_finder.abuse"> | ||
{{abuse}} | ||
</div> | ||
</dd> | ||
</dl> | ||
</div> | ||
</div> |