view Agendas/trunk/src/Agendas.Web/Views/Shared/EditorTemplates/Roles.cshtml @ 248:da9c295e9fa1

Nro de versión en el footer
author nelopauselli
date Fri, 07 Oct 2011 13:02:13 -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
}