@model IEnumerable

Dashboard Gestione comments

Da questa pagina puoi gestire comments
Comments accepted
@foreach (GarageBandz.Domain.Comment comment in Model.Where(x => x.IsModerated == true)) { }
Creator Comment Azioni
@comment.Creator @comment.Body @if (!comment.Accepted) { } else { }
Comments not moderated yet
@foreach (GarageBandz.Domain.Comment comment in Model.Where(x => x.IsModerated == false)) { }
Creator Comment Azioni
@comment.Creator @comment.Body
@Html.PagedListPager((IPagedList)Model, page => Url.Action("Index", new { page }))