mirror of
https://github.com/tiennm99/coolify.git
synced 2026-08-18 04:27:24 +00:00
Add full-width and centered layout preferences across the app shell and workspaces. Replace page-size selects with dropdowns and add searchable breadcrumb switching.
26 lines
1.3 KiB
PHP
26 lines
1.3 KiB
PHP
<div>
|
|
<x-slot:title>
|
|
Sentinel Logs | Coolify
|
|
</x-slot>
|
|
<livewire:server.navbar :server="$server" />
|
|
<div
|
|
class="server-settings-workspace application-settings-workspace mt-4 grid w-full max-w-none min-w-0 gap-8 lg:mt-0 xl:grid-cols-[210px_minmax(0,1fr)] xl:gap-8">
|
|
<x-server.sidebar :server="$server" activeMenu="sentinel" />
|
|
<div class="application-settings-form w-full">
|
|
<x-application.settings-section title="Sentinel logs"
|
|
helper="Search, filter, follow, copy, or download recent output from the Sentinel container."
|
|
flush class="logs-settings-section">
|
|
<x-slot:actions>
|
|
<x-status-badge :status="$server->isSentinelLive() ? 'In sync' : 'Out of sync'"
|
|
:type="$server->isSentinelLive() ? 'success' : 'warning'"
|
|
class="logs-section-status-badge" />
|
|
</x-slot:actions>
|
|
<div class="settings-log-panel">
|
|
<livewire:project.shared.get-logs :server="$server" container="coolify-sentinel"
|
|
displayName="Sentinel" :collapsible="false" />
|
|
</div>
|
|
</x-application.settings-section>
|
|
</div>
|
|
</div>
|
|
</div>
|