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 @@
+ @@ -46,11 +47,12 @@ @foreach($nests as $nest) + - - - + + + @endforeach
ID Name Description Eggs
{{ $nest->id }} {{ $nest->name }} {{ $nest->description }}{{ $nest->eggs_count }}{{ $nest->packs_count }}{{ $nest->servers_count }}{{ $nest->eggs_count }}{{ $nest->packs_count }}{{ $nest->servers_count }}
diff --git a/resources/themes/pterodactyl/admin/nests/view.blade.php b/resources/themes/pterodactyl/admin/nests/view.blade.php index 2f30932fa..fe1e49462 100644 --- a/resources/themes/pterodactyl/admin/nests/view.blade.php +++ b/resources/themes/pterodactyl/admin/nests/view.blade.php @@ -49,6 +49,13 @@
+
+ +
+ +

A unique ID used for identification of this nest internally and through the API.

+
+
@@ -60,7 +67,7 @@
-

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.

@@ -76,6 +83,7 @@
+ @@ -83,6 +91,7 @@ @foreach($nest->eggs as $egg) +
ID Name Description Servers
{{ $egg->id }} {{ $egg->name }} {!! $egg->description !!} {{ $egg->servers->count() }}