Update to match new installer processing.

This commit is contained in:
Dane Everitt 2016-01-22 20:31:47 -05:00
parent 4719b20a27
commit be47565c78
4 changed files with 45 additions and 3 deletions

View file

@ -289,7 +289,8 @@
"count": 3
},
"remote": {
"download": "{{ url('/remote/download') }}"
"download": "{{ route('remote.download') }}",
"installed": "{{ route('remote.install') }}"
},
"uploads": {
"maximumSize": 1000000

View file

@ -32,6 +32,15 @@
<li><a href="/admin/servers">Servers</a></li>
<li class="active">{{ $server->name }} ({{ $server->uuidShort}})</li>
</ul>
@if($server->installed === 0)
<div class="alert alert-warning">
This server is still running through the install process and is not avaliable for use just yet. This message will disappear once this process is completed.
</div>
@elseif($server->installed === 2)
<div class="alert alert-danger">
This server <strong>failed</strong> to install properly. You should delete it and try to create it again or check the daemon logs.
</div>
@endif
<ul class="nav nav-tabs tabs_with_panel" id="config_tabs">
<li class="active"><a href="#tab_about" data-toggle="tab">About</a></li>
<li><a href="#tab_details" data-toggle="tab">Details</a></li>