mirror of
https://github.com/portainer/portainer.git
synced 2025-07-24 07:49:41 +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>
35 lines
1.4 KiB
HTML
35 lines
1.4 KiB
HTML
<rd-header>
|
|
<rd-header-title title-text="Host overview">
|
|
<a data-toggle="tooltip" title="Refresh" ui-sref="{{ $ctrl.refreshUrl }}" ui-sref-opts="{reload: true}">
|
|
<i class="fa fa-sync" aria-hidden="true"></i>
|
|
</a>
|
|
</rd-header-title>
|
|
<rd-header-content>Docker</rd-header-content>
|
|
</rd-header>
|
|
|
|
<information-panel-offline ng-if="$ctrl.offlineMode"></information-panel-offline>
|
|
|
|
<host-details-panel
|
|
host="$ctrl.hostDetails"
|
|
is-browse-enabled="$ctrl.isAgent && $ctrl.agentApiVersion > 1 && !$ctrl.offlineMode && $ctrl.hostFeaturesEnabled"
|
|
browse-url="{{ $ctrl.browseUrl }}"
|
|
is-job-enabled="$ctrl.isJobEnabled && !$ctrl.offlineMode && $ctrl.hostFeaturesEnabled"
|
|
job-url="{{ $ctrl.jobUrl }}"
|
|
></host-details-panel>
|
|
|
|
<engine-details-panel engine="$ctrl.engineDetails"></engine-details-panel>
|
|
|
|
<jobs-datatable
|
|
ng-if="$ctrl.isJobEnabled && $ctrl.jobs && !$ctrl.offlineMode && $ctrl.hostFeaturesEnabled"
|
|
title-text="Jobs"
|
|
title-icon="fa-tasks"
|
|
dataset="$ctrl.jobs"
|
|
table-key="jobs"
|
|
order-by="Created"
|
|
reverse-order="true"
|
|
></jobs-datatable>
|
|
|
|
<devices-panel ng-if="$ctrl.isAgent && $ctrl.agentApiVersion > 1 && !$ctrl.offlineMode && $ctrl.hostFeaturesEnabled" devices="$ctrl.devices"></devices-panel>
|
|
<disks-panel ng-if="$ctrl.isAgent && $ctrl.agentApiVersion > 1 && !$ctrl.offlineMode && $ctrl.hostFeaturesEnabled" disks="$ctrl.disks"></disks-panel>
|
|
|
|
<ng-transclude></ng-transclude>
|