@model IEnumerable

Dashboard Gestione Utenti

Da questa pagina puoi gestire gli utenti registrati
@using (Html.BeginForm("SearchEntity", "Profile", FormMethod.Post)) {
}
Utenti attivi
@foreach (GarageBandz.Domain.Profile user in Model) { }
Nome Email Sesso Sorgente Azioni
@user.Username @user.Email @user.Gender @(String.IsNullOrEmpty(user.FacebookId)?"Facebook":String.IsNullOrEmpty(user.GoogleId)!=null?"GooglePlus":"Email")
@Html.PagedListPager( (IPagedList)Model, page => Url.Action("Index", new { page }) )