This commit is contained in:
Dane Everitt 2018-01-06 13:19:17 -06:00
parent 4b5ee920bd
commit a3bad520cd
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
2 changed files with 16 additions and 1 deletions

View file

@ -45,6 +45,7 @@
<th>Node</th>
<th>Connection</th>
<th></th>
<th></th>
</tr>
@foreach ($servers as $server)
<tr data-server="{{ $server->uuidShort }}">
@ -64,6 +65,10 @@
<span class="label label-success">Active</span>
@endif
</td>
<td class="text-center">
<a class="btn btn-xs btn-default" href="{{ route('server.index', $server->uuidShort) }}"><i class="fa fa-wrench"></i></a>
<a class="btn btn-xs btn-default console-popout" href="{{ route('server.console', $server->uuidShort) }}"><i class="fa fa-terminal"></i></a>
</td>
</tr>
@endforeach
</tbody>
@ -78,3 +83,13 @@
</div>
</div>
@endsection
@section('footer-scripts')
@parent
<script>
$('.console-popout').on('click', function (event) {
event.preventDefault();
window.open($(this).attr('href'), 'Pterodactyl Console', 'width=800,height=400');
});
</script>
@endsection