---
sidebar_position: 3
title: Add Edit action
---
In order to reach the editing page, we will therefore modify the grid in order to add a link to our new page with the identifier of our element.
For this we will create a new `DataGridColumn` column with a `DisplayTemplate`.
Open the `Pages/List.razor` file and add the highlighted changes as follows:
```cshtml title="Pages/List.razor"
...
// highlight-start
Editer
// highlight-end
```