mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-05 07:52:34 +00:00
Bug fixes (#155)
This commit is contained in:
15
resources/views/sites/installing.blade.php
Normal file
15
resources/views/sites/installing.blade.php
Normal file
@ -0,0 +1,15 @@
|
||||
<x-site-layout :site="$site">
|
||||
<x-slot name="pageTitle">{{ $site->domain }}</x-slot>
|
||||
|
||||
<x-live id="site">
|
||||
@if ($site->status === \App\Enums\SiteStatus::INSTALLING)
|
||||
@include("sites.partials.installing", ["site" => $site])
|
||||
@endif
|
||||
|
||||
@if ($site->status === \App\Enums\SiteStatus::INSTALLATION_FAILED)
|
||||
@include("sites.partials.installation-failed", ["site" => $site])
|
||||
@endif
|
||||
</x-live>
|
||||
|
||||
@include("server-logs.partials.logs-list", ["server" => $site->server, "site" => $site])
|
||||
</x-site-layout>
|
Reference in New Issue
Block a user