@page @model EnotaryoPH.Web.Pages.Principal.Dashboard.DashboardModel @{ } @section Head { } Create New Completed Incomplete Identification Docs Completed Documents Type Date Link @if (Model.CompletedDocuments.Count > 0) { @foreach (var item in Model.CompletedDocuments) { @item.Type @item.Date.ToShortDateString() View } } else { No records to display. } Incomplete Documents Type Status Created Link @if(Model.IncompleteDocuments.Count > 0){ @foreach (var item in Model.IncompleteDocuments) { @item.Type @item.Status @item.Date.ToString("g") View } } else { No records to display. } Identification Documents Type Uploaded Link @if (Model.IdentificationDocuments.Count > 0) { @foreach (var item in Model.IdentificationDocuments) { @item.Type @item.Date.ToShortDateString() View } } else { No records to display. } Upload