diff2html_compare
Version:
npm package for maintaining all the js and css styling for the diff2html_compare python script to work
26 lines (23 loc) • 637 B
HTML
<ul class="breadcrumb">
<li><a href="#/">Domains</a> <span class="divider">/</span></li>
<li>{{domain}}</li>
</ul>
<ul class="pager">
<li class="previous" ng-show="prevpage != null">
<a ng-href="#/list{{prevpage}}">← Previous</a>
</li>
<li class="next" ng-show="nextpage != null">
<a ng-href="#/list{{nextpage}}">Next →</a>
</li>
</ul>
<table class="table table-striped">
<tbody>
<tr ng-repeat="item in items._items">
<td>
<div ng-repeat="(key, value) in item" ng-show="key != '_links'">
{{key}}: {{value}}
</div>
</td>
</tr>
</tbody>
</table>