From ce508820893eb2b235cde157327383dc4d4638fa Mon Sep 17 00:00:00 2001 From: gabrielgiroe1 Date: Thu, 30 May 2024 11:32:56 +0300 Subject: [PATCH 1/2] wip --- docs/3.0/views.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/3.0/views.md b/docs/3.0/views.md index 93a8b185..3fac1fb3 100644 --- a/docs/3.0/views.md +++ b/docs/3.0/views.md @@ -18,6 +18,14 @@ The page where you can edit one resource. The page where you can create a new resource. ::: +:::option `Display` +Combines the `Index` and `Show` views to display resources and their details. +::: + +:::option `Form` +Combines the `Edit` and `New` views for creating and editing resources. +::: + ## Preview The fields marked with `show_on :preview`, will be show in the [preview field](./fields/preview) popup. From 9f3ac302201bae14c29600e9265f5d0e0e4444b3 Mon Sep 17 00:00:00 2001 From: Adrian Marin Date: Thu, 30 May 2024 15:24:00 +0300 Subject: [PATCH 2/2] Update docs/3.0/views.md --- docs/3.0/views.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/3.0/views.md b/docs/3.0/views.md index 3fac1fb3..350d16bc 100644 --- a/docs/3.0/views.md +++ b/docs/3.0/views.md @@ -19,11 +19,11 @@ The page where you can create a new resource. ::: :::option `Display` -Combines the `Index` and `Show` views to display resources and their details. +`:display` is an alias for the the `Index` and `Show` views where you can display records and their details. ::: :::option `Form` -Combines the `Edit` and `New` views for creating and editing resources. +`:form` is an alias for the `Edit` and `New` views for creating and editing records. ::: ## Preview