Page MenuHomec4science

hub.tpl.html
No OneTemporary

File Metadata

Created
Thu, Sep 26, 12:57

hub.tpl.html

<div>
<table class="table table-striped" ng-if="!notAHub">
<thead>
<tr>
<td colspan="2">
Network Node Summary
</td>
</tr>
</thead>
<tbody>
<tr>
<td>
<label>Hub Queries Self:</label>
</td>
<td>
{{net.shouldQuerySelf}}
</td>
</tr>
<tr ng-repeat="node in net.downstreamNodes">
<td>
{{node.name}}
</td>
<td>
{{node.url}}
</td>
</tr>
</tbody>
</table>
<table class="table table-striped" ng-if="net.hasFailures.toString() === 'true'">
<thead>
<tr>
<td colspan="2">
Node Failure Details
</td>
</tr>
<tr>
<td>
<label>Origin</label>
</td>
<td>
<label>Description</label>
</td>
</tr>
</thead>
<tbody>
<tr ng-repeat="failure in net | filter:'failure'">
<td>
{{failure.origin}}
</td>
<td>
<span class="error">{{failure.description}}</span>
</td>
</tr>
</tbody>
</table>
<table class="table table-striped" ng-if="!notAHub">
<thead>
<tr>
<td colspan="2">
Node Counts
</td>
</tr>
</thead>
<tbody>
<tr>
<td>
<label>Expected Result Count:</label>
</td>
<td>
{{net.expectedResultCount}}
</td>
</tr>
<tr>
<td>
<label>Valid Result Count:</label>
</td>
<td>
{{net.validResultCount}}
</td>
</tr>
<tr>
<td>
<label>Failure Count:</label>
</td>
<td>
<span ng-class="{'error': net.hasFailures === true}">{{net.failureCount}}</span>
</td>
</tr>
<tr>
<td>
<label>Timeout Count:</label>
</td>
<td>
{{net.timeoutCount}}
</td>
</tr>
</tbody>
</table>
<table class="table table-striped" ng-if="notAHub">
<thead>
<tr>
<td colspan="2">
Not A Hub
</td>
</tr>
</thead>
<tbody>
<tr>
<td colspan="2">
This node is not a hub.
</td>
</tr>
</tbody>
</table>
</div>

Event Timeline