server/admin/static/views/home.html

25 lines
850 B
HTML
Raw Normal View History

<div class="jumbotron text-light bg-dark">
2017-12-14 03:08:43 +00:00
<h1 class="display-4">Interface d'administration du challenge</h1>
2020-01-29 10:35:01 +00:00
<div class="row">
<div class="col">
<p ng-controller="VersionController">
Version de l'API : {{ v.version }}
</p>
<p ng-controller="TimestampController">
Latence frontend-backend : <ng-pluralize count="t.diffFB / 1000000000" when="{'one': '{}&nbsp;seconde', 'other': '{}&nbsp;secondes'}"></ng-pluralize><br>
Dernière synchronisation du frontend : {{ t.frontend | date:"mediumTime" }}
</p>
</div>
<div class="col">
<ul ng-controller="HealthController">
<li ng-repeat="heal in health">
<a ng-href="teams/{{ heal.id_team }}" ng-if="heal.id_team">{{ heal.path }}</a>
<span ng-if="!heal.id_team">{{ heal.path }}</span>
: {{ heal.error }}
</li>
</ul>
</div>
</div>
2016-10-13 17:52:54 +00:00
</div>