diff --git a/CHANGELOG.md b/CHANGELOG.md index fa25d0db9..680508d46 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,9 @@ This project follows [Semantic Versioning](http://semver.org) guidelines. * `[beta.3]` — Fixes a bug that would cause an error when attempting to create a new user on the Panel. * `[beta.3]` — Fixes error handling of the settings service provider when no migrations have been run. +### Added +* Nest and Egg listings now show the associated ID in order to make API requests easier. + ## v0.7.0-beta.3 (Derelict Dermodactylus) ### Fixed * `[beta.2]` — Fixes a bug that would cause an endless exception message stream in the console when attemping to setup environment settings in certain instances. diff --git a/resources/themes/pterodactyl/admin/nests/index.blade.php b/resources/themes/pterodactyl/admin/nests/index.blade.php index dd47a55d3..9f9c1531c 100644 --- a/resources/themes/pterodactyl/admin/nests/index.blade.php +++ b/resources/themes/pterodactyl/admin/nests/index.blade.php @@ -38,6 +38,7 @@
ID | Name | Description | Eggs | @@ -46,11 +47,12 @@|||||
---|---|---|---|---|---|---|---|---|
{{ $nest->id }} |
{{ $nest->name }} | {{ $nest->description }} | -{{ $nest->eggs_count }} |
- {{ $nest->packs_count }} |
- {{ $nest->servers_count }} |
+ {{ $nest->eggs_count }} | +{{ $nest->packs_count }} | +{{ $nest->servers_count }} |
A unique ID used for identification of this nest internally and through the API.
+A unique identifier that all servers using this option are assigned for identification purposes.
+A UUID that all servers using this option are assigned for identification purposes.
ID | Name | Description | Servers | @@ -83,6 +91,7 @@
---|---|---|---|
{{ $egg->id }} |
{{ $egg->name }} | {!! $egg->description !!} | {{ $egg->servers->count() }} |