> 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: Tutorial | Customize a Column With Badges in Auto Patterns ## Article: Tutorial | Customize a Column With Badges in Auto Patterns ## Article Link: https://dev.wix.com/docs/build-apps/develop-your-app/design/auto-patterns/tutorial-customize-a-column-with-badges-in-auto-patterns.md ## Article Content: # Tutorial | Customize a Column with Badges in Auto Patterns
__Alpha:__ The [AI app builder](https://dev.wix.com/docs/build-apps/develop-your-app/build-with-ai/about-the-ai-app-builder.md) is currently in alpha. This feature is subject to change and may have bugs, issues, and limitations. We're actively improving it based on your feedback.You can override default column rendering in [Auto Patterns](https://dev.wix.com/docs/build-apps/develop-your-app/design/auto-patterns/about-auto-patterns.md) to customize how columns appear in table components on dashboard pages. In this tutorial, you customize an order status column to display badges with different colors based on the order status value. The order status column displays a standard badge for `Processing`, a success badge for `Shipped` and `Delivered`, an error badge for `Canceled`, and a neutral badge for other values. Use the following steps to customize the column with badges: 1. [Create the column component](#step-1--create-the-column-component). 2. [Export the column component](#step-2--export-the-column-component). 3. [Configure the column overrides](#step-3--configure-the-column-overrides). 4. [Update the configuration file](#step-4--update-the-configuration-file). ## Step 1 | Create the column component Create a column component file such as `components/columns/orderStatus.tsx`. In this file, define a method that receives the column value and returns a React component that displays it as a badge. The method uses conditional logic to determine the badge color based on the status value: - `Processing`: standard badge - `Shipped` or `Delivered`: success badge - `Canceled`: error badge ```tsx import { Badge } from '@wix/design-system'; interface IColumnValue