> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt ## Resource: About Dashboard Pages ## Article: About Dashboard Pages ## Article Link: https://dev.wix.com/docs/develop-websites-sdk/code-your-site/build-a-custom-dashboard/about-dashboard-pages.md ## Article Content: # About Dashboard Pages Dashboard pages are pages you create in the editor that only appear on your site's [dashboard](https://support.wix.com/en/article/wix-dashboard-overview). With dashboard pages, you can create a custom back office allowing you and your [collaborators](https://support.wix.com/en/article/roles-permissions-overview) to efficiently manage your business operations and live database content. Only you and your collaborators can access your dashboard pages. For example, suppose you have a real estate site and have added collaborators to the site. The image below depicts a dashboard page that lists the properties for sale. ![Dashboard page interface example](https://wixmp-833713b177cebf373f611808.wixmp.com/images/dff47fa3f0639227c4cea9d8b7f8e675.png) You can create several dashboard pages to help you and your collaborators manage your property listings such as: - An upload form for adding new property listings. - A form to simplify making changes to the information about different properties. - A page that lists all of the properties in your live database with search capabilities. - A page that lists all new properties added by form for review before displaying them on your live site. - A page where each collaborator can see the properties they manage. ## Supported IDEs You create dashboard pages in the editor (Wix Studio and Wix Editor). You can view and access any dashboard pages created in the editor when using other IDEs, such as the Local IDE. The IDEs synchronize with the editor to ensure consistency. To add functionality to your dashboard page, add your code to the dashboard's page code file in: - The [Code editor](https://dev.wix.com/docs/develop-websites-sdk/code-your-site/developer-environments/ides/code-editor/about-the-code-editor.md) - The [Wix IDE](https://dev.wix.com/docs/develop-websites-sdk/code-your-site/developer-environments/ides/wix-ide/about-the-wix-ide.md) - Your [local IDE](https://dev.wix.com/docs/develop-websites-sdk/code-your-site/developer-environments/ides/git-integration/about-git-integration-with-wix-cli.md) ## Before you begin Before you begin, it's important to note the following: - Dashboard pages appear in the dashboard only after you publish the site. - Site visitors can't access your dashboard pages. However, the underlying page code for a dashboard page is publicly visible. ## Differences between dashboard pages and regular pages Dashboard pages support the same functionality and share most settings with any other page on a site, including the look and feel, with the following exceptions: - They don't have headers or footers. - For sites that include a Members Area, the login bar doesn't appear. - They don't appear in the site menu. - You can't convert a regular page to a dashboard page or a dashboard page to a regular page, but you can convert a dashboard page to a dynamic page. ## Linking to and from dashboard pages When you link to a dashboard page from a regular page or the site's menu, only site collaborators are redirected to the dashboard page in your dashboard. All other site visitors are directed to a login page instead. When you link to a regular page from a dashboard page, the regular page opens in your dashboard unless you set the link to open in a new page. ## Dashboard APIs You can use the [`dashboard`](https://dev.wix.com/docs/sdk/host-modules/dashboard/introduction.md) SDK module to interact with your dashboard pages programmatically. This module allows you to: - Display toast notifications to provide feedback to users. - Navigate between different dashboard pages. - Open modals. - Manage the dashboard environment. ## See also - [Add a Dashboard Page](https://dev.wix.com/docs/develop-websites-sdk/code-your-site/build-a-custom-dashboard/add-a-dashboard-page.md) - [Dashboard API](https://dev.wix.com/docs/sdk/host-modules/dashboard/introduction.md)