Created
April 16, 2019 17:05
-
-
Save ag-michael/73cad935fbb293e7783744bd8ee0261e to your computer and use it in GitHub Desktop.
ADEnrichment report template
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
<style> | |
#reportrow { | |
position:relative; | |
overflow-wrap:anywhere; | |
border-bottom:solid 1px; | |
} | |
</style> | |
<div class="panel panel-info" ng-if="success"> | |
<div class="panel-heading"> | |
ActiveDirectory Enrichment Output for <strong>{{artifact.data}}</strong><img src="data:image/gif;base64,{{content.thumbnail}}"/> | |
</div> | |
<div class="panel-body"> | |
<div id='thumbnail'> | |
</div> | |
<div ng-repeat="row in ::content.adobject"> | |
<div id='reportrow'> | |
<span id='reportkey'><strong>{{::row.key}}:</strong></span><span id='reportvalue'> {{::row.value}}</span><br> | |
</div> | |
</div> | |
</div> | |
<!-- General error --> | |
<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> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment