From 804f109e412926377e0784b7ac2a36d6f00a5765 Mon Sep 17 00:00:00 2001
From: V1r4lv0rt3x <141157887+v1r4lv0rt3x@users.noreply.github.com>
Date: Mon, 8 Sep 2025 13:43:30 +0200
Subject: [PATCH 1/3] Fix grammar and clarify line break explanation
Corrected grammatical errors and clarified the explanation regarding line breaks in Blueprint's admin view.
---
docs/pages/developing-extensions/Admin-views.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/docs/pages/developing-extensions/Admin-views.md b/docs/pages/developing-extensions/Admin-views.md
index 14e4796..ab0e0ab 100644
--- a/docs/pages/developing-extensions/Admin-views.md
+++ b/docs/pages/developing-extensions/Admin-views.md
@@ -35,7 +35,7 @@ The Barebones template includes two files by default, `conf.yml` and `view.blade
You might have already noticed that `{name}`, `{identifier}` and `{version}` have been replaced with the corresponding values automatically. These strings are referred to as [placeholders](?page=documentation/placeholders), which you can find documentation for [on this page](?page=documentation/placeholders).
-Right now all lines or on the same row. This is due to how Blueprint builds your admin view internally, as it doesn't handle linebreaks. We can fix this by adding `
` tags at the end of each line.
+Right now all lines are on the same row. This is due to how HTML is rendered in Blueprint’s admin view, as it doesn’t handle line breaks. We can fix this by adding `
` tags at the end of each line.
@@ -81,4 +81,4 @@ You have now created your very own admin page through Blueprint. Try experimenti
\ No newline at end of file
+
From 9f982665e9ec2c5388b2ebd7e4d85707a29c56ae Mon Sep 17 00:00:00 2001
From: V1r4lv0rt3x <141157887+v1r4lv0rt3x@users.noreply.github.com>
Date: Mon, 8 Sep 2025 13:55:13 +0200
Subject: [PATCH 2/3] Refine Admin views documentation text
Updated text for clarity and consistency in Admin views documentation.
---
docs/pages/developing-extensions/Admin-views.md | 12 +++++++-----
1 file changed, 7 insertions(+), 5 deletions(-)
diff --git a/docs/pages/developing-extensions/Admin-views.md b/docs/pages/developing-extensions/Admin-views.md
index ab0e0ab..207f137 100644
--- a/docs/pages/developing-extensions/Admin-views.md
+++ b/docs/pages/developing-extensions/Admin-views.md
@@ -33,9 +33,9 @@ The Barebones template includes two files by default, `conf.yml` and `view.blade
-You might have already noticed that `{name}`, `{identifier}` and `{version}` have been replaced with the corresponding values automatically. These strings are referred to as [placeholders](?page=documentation/placeholders), which you can find documentation for [on this page](?page=documentation/placeholders).
+You might have already noticed that `{name}`, `{identifier}` and `{version}` are replaced with the corresponding values automatically. These strings are referred to as [placeholders](?page=documentation/Placeholders).
-Right now all lines are on the same row. This is due to how HTML is rendered in Blueprint’s admin view, as it doesn’t handle line breaks. We can fix this by adding `
` tags at the end of each line.
+Right now, all lines are on the same row. This is due to how HTML is rendered in Blueprint’s admin view, as it doesn’t handle line breaks. We can fix this by adding `
` tags at the end of each line.
@@ -51,9 +51,11 @@ Right now all lines are on the same row. This is due to how HTML is rendered in
-This looks a bit plain, doesn't it? We can spice things up and add a bit of depth with box containers, a fancy title and a much better user experience.
+This looks a bit plain, doesn't it? We can spice things up and add a bit of depth with box containers, a fancy title, and a much better user experience.
-We can achieve this with the `box` css class, which is included in the Pterodactyl admin panel by default. To add a nice color alongside the box, you can make use of the following classes: `box-primary`, `box-info`, `box-success`, `box-warning` and `box-danger`.
+We can achieve this with the `box` CSS class, which is included in the Pterodactyl admin panel by default. To add a nice color alongside the box, you can make use of the following classes: `box-primary`, `box-info`, `box-success`, `box-warning` and `box-danger`.
+
+Here's an example of how you can use these classes to enhance your admin view:
@@ -76,7 +78,7 @@ We can achieve this with the `box` css class, which is included in the Pterodact
-You have now created your very own admin page through Blueprint. Try experimenting a bit with it, and once you are ready, move onto the next guide.
+You have now created your very own admin page through Blueprint. Try experimenting a bit with it, and once you are ready, move on to the next guide to learn how to create custom controllers for your extension.
Previous
From deebbd077a372cac351db4e50e8e53623da0969c Mon Sep 17 00:00:00 2001
From: V1r4lv0rt3x <141157887+v1r4lv0rt3x@users.noreply.github.com>
Date: Wed, 1 Oct 2025 01:11:11 +0200
Subject: [PATCH 3/3] Fix link case sensitivity in Admin-views.md
---
docs/pages/developing-extensions/Admin-views.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/pages/developing-extensions/Admin-views.md b/docs/pages/developing-extensions/Admin-views.md
index 207f137..3398d37 100644
--- a/docs/pages/developing-extensions/Admin-views.md
+++ b/docs/pages/developing-extensions/Admin-views.md
@@ -33,7 +33,7 @@ The Barebones template includes two files by default, `conf.yml` and `view.blade
-You might have already noticed that `{name}`, `{identifier}` and `{version}` are replaced with the corresponding values automatically. These strings are referred to as [placeholders](?page=documentation/Placeholders).
+You might have already noticed that `{name}`, `{identifier}` and `{version}` are replaced with the corresponding values automatically. These strings are referred to as [placeholders](?page=documentation/placeholders).
Right now, all lines are on the same row. This is due to how HTML is rendered in Blueprint’s admin view, as it doesn’t handle line breaks. We can fix this by adding `
` tags at the end of each line.