@model IList @{ ViewBag.Title = "Notifiche"; Layout = "~/Views/Shared/_LayoutTwoBars.cshtml"; }

Notifiche recenti

@foreach (var g in Model.GroupBy(x => x.Created.ToLongDateString())) {

Inviata @g.Key

    @foreach (var n in g) { @Html.Partial("__" + n.Type + "Notification", n) }
}
@section sidebar { @Html.Partial("_Sidebar") }