1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-07 23:05:26 +02:00
portainer/app/docker/views/containers/logs/containerlogs.html

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
618 B
HTML
Raw Permalink Normal View History

<page-header
title="'Container logs'"
breadcrumbs="[
{ label:'Containers', link:'docker.containers' },
{
label:(container.Name | trimcontainername),
link: 'docker.containers.container',
linkParams: { id: container.Id }
}, 'Logs']"
>
</page-header>
<container-log-view ng-if="!logsEnabled"></container-log-view>
<log-viewer
data="logs"
ng-if="logs && logsEnabled"
log-collection-change="changeLogCollection"
display-timestamps="state.displayTimestamps"
line-count="state.lineCount"
since-timestamp="state.sinceTimestamp"
resource-name="container.Name"
></log-viewer>