mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-15 10:13:15 -05:00

Names of utility classes have changed: https://getbootstrap.com/docs/5.0/migration/#utilities
19 lines
511 B
HTML
19 lines
511 B
HTML
<app-page-header title="Logs" i18n-title>
|
|
|
|
</app-page-header>
|
|
|
|
|
|
<ul ngbNav #nav="ngbNav" [(activeId)]="activeLog" (activeIdChange)="reloadLogs()" class="nav-tabs">
|
|
<li *ngFor="let logFile of logFiles" [ngbNavItem]="logFile">
|
|
<a ngbNavLink>{{logFile}}.log</a>
|
|
</li>
|
|
</ul>
|
|
|
|
<div [ngbNavOutlet]="nav" class="mt-2"></div>
|
|
|
|
<div class="bg-dark p-3 text-light font-monospace log-container" #logContainer>
|
|
<p
|
|
class="m-0 p-0 log-entry-{{getLogLevel(log)}}"
|
|
*ngFor="let log of logs">{{log}}</p>
|
|
</div>
|