<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage" %>

<%=Html.TitleForPage("Manage Roles")%>

<% using(Html.BeginFormAntiForgeryPost()) { %> <%=Html.ValidationSummary() %>
<%=Html.ActionLink("Add a role", "Create", new {}, new { @class = "button" }) %>
<%foreach (var row in Model.Rows) { %> <%}%>
 ↓<%-- todo: (heskew) something more appropriate for "this applies to the bulk actions --%> Name
"/> <%=Html.Encode(row.Name) %> <%=Html.ActionLink("Edit", "Edit", new { row.Id })%>
<% } %>