# Summary Dashboards

A summary dashboard appears automatically at the root of an Umbraco UI Builder section. It provides an overview of key collections within that section, enabling quick access to list views. Additionally, it allows for adding new entries to the collection, provided the collection is not set to read-only.

By summarizing important data and simplifying navigation, the summary dashboard improves content management efficiency.

![Summary Dashboard](https://2099605805-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FXdAOUcqxoBqXe5oCQF8z%2Fuploads%2Fgit-blob-6e7f09e3d8b2933b5c880f0b0f20c95f3a984250%2Fdashboard.png?alt=media)

## Displaying a Collection on the Summary Dashboard

To display a collection on the summary dashboard, use the `ShowOnSummaryDashboard()` method in the collection configuration.

### Configuration Example

```csharp
collectionConfig.ShowOnSummaryDashboard();
```

**Code Reference:** `ShowOnSummaryDashboard() : CollectionConfigBuilder<TEntityType>`

{% hint style="warning" %}
Only root-level collections within a section can be displayed on the summary dashboard.
{% endhint %}
