Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Web/Views/Shared/EditorTemplates/Roles.cshtml @ 277:7439d7a5f8d0
Warning HTML: Cambiado ALT por TITLE.
author | juanjose.montesdeocaarbos |
---|---|
date | Tue, 20 Dec 2011 08:28:33 -0300 |
parents | 222362c29416 |
children |
line wrap: on
line source
@model IList<string> @foreach (var item in Html.GetRoles()) { <input type="checkbox" name="Roles" value="@item" @(Model != null && Model.Contains(item) ? "checked" : string.Empty) />@item }