@page @model EnotaryoPH.Web.Pages.Principal.Dashboard.DashboardModel @{ } @section Head { }

Completed Documents

@if (Model.CompletedDocuments.Count > 0) { @foreach (var item in Model.CompletedDocuments) { } } else { }
Type Date Link
@item.Type @item.Date.ToShortDateString() View
No records to display.

Incomplete Documents

@if(Model.IncompleteDocuments.Count > 0){ @foreach (var item in Model.IncompleteDocuments) { } } else { }
Type Status Link
@item.Type @item.Status View
No records to display.

Identification Documents

@if (Model.IdentificationDocuments.Count > 0) { @foreach (var item in Model.IdentificationDocuments) { } } else { }
Type Uploaded Link
@item.Type @item.Date.ToShortDateString() View
No records to display.