cf5056d9c0
* 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>
26 lines
937 B
HTML
26 lines
937 B
HTML
<rd-header>
|
|
<rd-header-title title-text="Network list">
|
|
<a data-toggle="tooltip" title="Refresh" ui-sref="docker.networks" ui-sref-opts="{reload: true}">
|
|
<i class="fa fa-sync" aria-hidden="true"></i>
|
|
</a>
|
|
</rd-header-title>
|
|
<rd-header-content>Networks</rd-header-content>
|
|
</rd-header>
|
|
<information-panel-offline ng-if="offlineMode"></information-panel-offline>
|
|
<div class="row">
|
|
<div class="col-sm-12">
|
|
<networks-datatable
|
|
title-text="Networks"
|
|
title-icon="fa-sitemap"
|
|
dataset="networks"
|
|
table-key="networks"
|
|
order-by="Name"
|
|
remove-action="removeAction"
|
|
show-ownership-column="applicationState.application.authentication"
|
|
show-host-column="applicationState.endpoint.mode.agentProxy && applicationState.endpoint.mode.provider === 'DOCKER_SWARM_MODE'"
|
|
offline-mode="offlineMode"
|
|
refresh-callback="getNetworks"
|
|
></networks-datatable>
|
|
</div>
|
|
</div>
|