New theme assigned to server console page.

This commit is contained in:
Dane Everitt 2017-01-15 18:52:22 -05:00
parent 4cc9f7447c
commit c7f3bb5112
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
8 changed files with 390 additions and 6 deletions

View file

@ -101,7 +101,7 @@
<div class="user-panel">
<div class="info">
<p>{{ $server->name }}</p>
<a href="#"><i class="fa fa-circle text-success"></i> Online</a>
<a href="#" id="server_status_icon"><i class="fa fa-circle text-default"></i> Checking...</a>
</div>
</div>
@endif
@ -129,12 +129,12 @@
</li>
@if (isset($server->name) && isset($node->name))
<li class="header">SERVER MANAGEMENT</li>
<li>
<li class="{{ Route::currentRouteName() !== 'server.index' ?: 'active' }}">
<a href="{{ route('server.index', $server->uuidShort) }}">
<i class="fa fa-terminal"></i> <span>Console</span>
</a>
</li>
<li class="treeview">
<li class="treeview {{ Route::currentRouteName() !== 'server.files.index' ?: 'active' }}">
<a href="#">
<i class="fa fa-files-o"></i>
<span>File Management</span>
@ -248,6 +248,7 @@
{!! Theme::js('vendor/bootstrap/bootstrap.min.js') !!}
{!! Theme::js('vendor/slimscroll/jquery.slimscroll.min.js') !!}
{!! Theme::js('vendor/adminlte/app.min.js') !!}
{!! Theme::js('js/vendor/socketio/socket.io.min.js') !!}
@show
</body>
</html>