mirror of
https://github.com/portainer/portainer.git
synced 2025-08-02 04:15:28 +02:00
* chore(project): install prettier and lint-staged * chore(project): apply prettier to html too * chore(project): git ignore eslintcache * chore(project): add a comment about format script * chore(prettier): update printWidth * chore(prettier): remove useTabs option * chore(prettier): add HTML validation * refactor(prettier): fix closing tags * feat(prettier): define angular parser for html templates * style(prettier): run prettier on codebase Co-authored-by: Anthony Lapenna <lapenna.anthony@gmail.com>
43 lines
1.5 KiB
HTML
43 lines
1.5 KiB
HTML
<div class="row">
|
|
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
|
|
<rd-widget>
|
|
<rd-widget-header icon="fa-code" title-text="Engine Details"></rd-widget-header>
|
|
<rd-widget-body classes="no-padding">
|
|
<table class="table">
|
|
<tbody>
|
|
<tr>
|
|
<td>Version</td>
|
|
<td
|
|
>{{ $ctrl.engine.releaseVersion }} <span ng-if="$ctrl.engine.apiVersion">(API: {{ $ctrl.engine.apiVersion }})</span></td
|
|
>
|
|
</tr>
|
|
<tr ng-if="$ctrl.engine.rootDirectory">
|
|
<td>Root directory</td>
|
|
<td>{{ $ctrl.engine.rootDirectory }}</td>
|
|
</tr>
|
|
<tr ng-if="$ctrl.engine.storageDriver">
|
|
<td>Storage Driver</td>
|
|
<td>{{ $ctrl.engine.storageDriver }}</td>
|
|
</tr>
|
|
<tr ng-if="$ctrl.engine.loggingDriver">
|
|
<td>Logging Driver</td>
|
|
<td>{{ $ctrl.engine.loggingDriver }}</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Volume Plugins</td>
|
|
<td>{{ $ctrl.engine.volumePlugins | arraytostr: ', ' }}</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Network Plugins</td>
|
|
<td>{{ $ctrl.engine.networkPlugins | arraytostr: ', ' }}</td>
|
|
</tr>
|
|
<tr ng-if="$ctrl.engine.engineLabels.length">
|
|
<td>Engine Labels</td>
|
|
<td>{{ $ctrl.engine.engineLabels | labelsToStr: ', ' }}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</rd-widget-body>
|
|
</rd-widget>
|
|
</div>
|
|
</div>
|