Skip to content

Commit 8323477

Browse files
committed
Better display of configuration button for services
1 parent 6bd9663 commit 8323477

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@ This file is a running track of new features and fixes to each version of the pa
33

44
This project follows [Semantic Versioning](http://semver.org) guidelines.
55

6+
## v0.6.0-pre.1
7+
### Added
8+
* Remote routes for daemon to contact in order to allow Daemon to retrieve updated service configuration files on boot. Centralizes services to the panel rather than to each daemon.
9+
* Basic service pack implementation to allow assignment of modpacks or software to a server to pre-install applications and allow users to update.
10+
11+
### Fixed
12+
13+
### Changed
14+
15+
### Deprecated
16+
617
## v0.5.6 (Bodacious Boreopterus)
718
### Added
819
* Added the following languages: Estonian `et`, Dutch `nl`, Norwegian `nb` (partial), Romanian `ro`, and Russian `ru`. Interested in helping us translate the panel into more languages, or improving existing translations? Contact us on Discord and let us know.

resources/views/admin/services/index.blade.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,10 @@
3333
<table class="table table-bordered table-hover">
3434
<thead>
3535
<tr>
36-
<th>Service Type</th>
36+
<th class="col-md-3">Service Type</th>
3737
<th>Description</th>
3838
<th class="text-center">Servers</th>
39+
<th></th>
3940
</tr>
4041
</thead>
4142
<tbody>
@@ -44,9 +45,11 @@
4445
<td><a href="{{ route('admin.services.service', $service->id) }}">{{ $service->name }}</a></td>
4546
<td>{!! $service->description !!}</td>
4647
<td class="text-center">{{ $service->c_servers }}</td>
48+
<td class="text-center align-middle"><a href="{{ route('admin.services.service.config', $service->id) }}"><button class="btn btn-xxs btn-primary"><i class="fa fa-wrench"></i> Configure</button></a></td>
4749
</tr>
4850
@endforeach
4951
<tr>
52+
<td></td>
5053
<td></td>
5154
<td></td>
5255
<td class="text-center"><a href="{{ route('admin.services.new') }}"><i class="fa fa-plus"></i></a></td>

0 commit comments

Comments
 (0)