Henrik Fransas
Mar 18, 2014
  3683
(2 votes)

Gadget for Last Updated Pages to work in Dashboard

One change EPiServer did in version 7 was to move the built in gadget for last updated pages from the dashboard to the edit mode in the tree view. Even if it feels like a place more closely related to the function it also made it harder to use, since there is not much room there.

Thankfully with EPiServer 7 and MVC it is incredible easy to create a gadget and since the code for the report on last updated pages are there it is not necessary to invent the wheel again Blinkar. To get back this little nice gadget do like this:

 




1: Create Gadget control
This is based on that you are using MVC on your site.

using System;
using System.Web.Mvc;
using EPiServer.Core;
using EPiServer.ServiceLocation;
using EPiServer.Shell.Gadgets;
using EPiServer.UI.Report.Reports;

namespace SiteName.Controllers.Gadgets
{
    [Gadget(Name = "Updated Pages", Description = "List the last 15 updated pages for this site", Title = "Last updated pages")]
    public class UpdatedPagesController : Controller
    {
        public ActionResult Index()
        {
            var instance = ServiceLocator.Current.GetInstance<ChangedPagesData>();
            int numOfRows = 0;

            //It is important to set the parameters correct since for example if you define other sorting than "Saved" nothing will be returned, why? I do not know
            var pages = instance.GetPages(ContentReference.StartPage, -1, false, DateTime.UtcNow.AddDays(-14),
                DateTime.UtcNow, "Saved", 15, 0, out numOfRows);
   
            return View(pages);
        }


    }
}

2: Create the View

@model EPiServer.Core.PageDataCollection

@{
    ViewBag.Title = "Updated pages";
    Layout = null;
}

@if (Model.Any())
{
    <div>
        <table class="epi-default epi-default-legacy" cellspacing="0" border="0" id="ctl00_FullRegion_MainRegion_ReportView" style="border-style:None;width:100%;border-collapse:collapse;">
            <tr>
                <th scope="col">Pagename</th>
                <th scope="col">Last changed</th>
                <th scope="col">Changed by</th>
                <th scope="col">PageType</th>
            </tr>
            @foreach (var entry in Model)
            {
                <tr>
                    <td style="width: 27%;">
                        <a href="/EPiServer/CMS/#context=epi.cms.contentdata:///@entry.PageLink.ID.ToString()" target="EPiServerMainUI" title="PageType: @entry.PageTypeName PageId: @entry.PageLink.ID.ToString()">@entry.PageName</a>
                    </td>
                    <td>
                        <span title="@entry.Saved.ToString("yyyy-MM-dd HH:mm:ss")"> @entry.Saved.ToString("yyyy-MM-dd")</span>
                    </td>
                    <td>
                        @entry.ChangedBy
                    </td>
                    <td>
                        @entry.PageTypeName
                    </td>
                </tr>
            }
        </table>
    </div>
}

The layout and styling isn’t the best and I have used the same code that EPiServer use so I am depending on their styles.

I will update (or write a new) post on this with a updated version that are using AngularJS and better styling to do filtering/sorting and so on, but this is how easy it is to create your own Gadget to use in the Dashboard.

Happy coding!

Mar 18, 2014

Comments

nitin anand
nitin anand Jun 29, 2018 08:34 AM

Hi, nice article. is there any way to get the recently changed blocks as well? can you guide how can i see the episerver code from recently changed pages.aspx.cs file

Henrik Fransas
Henrik Fransas Jun 29, 2018 08:48 AM

Hello

It should be possible but I do not think that it is a build in function so you need to either query the database yourself of run the query through Episerver Find or something

Please login to comment.
Latest blogs
Optimizely CMS 13: Why Search & Navigation Now Means Graph Migration

Optimizely CMS 13 makes Graph a required part of the platform. Here is what that means in practice for teams moving from Search & Navigation, with ...

Wojciech Seweryn | Apr 8, 2026 |

Jhoose Security Module V3.0.0 – Site-Level Security Configuration for Optimizely

Jhoose Security Module updated for Optimizely CMS 13, introducing separate packages for CMS 12 and 13 with ongoing support and enhancements.

Andrew Markham | Apr 6, 2026 |

Searchable settings page

In my current project which has been actively developed for quite some time we have a big classic settings page. Unfortunately the placement and...

Per Nergård (MVP) | Apr 6, 2026

Using Azure Devops Pipelines in Optimizely SAAS (Configured) Commerce

Introduction When working with SAAS Commerce build service v2 your currently need to use a github repo with configured branches to start deployment...

Mark Hall | Apr 4, 2026 |