2009-11-10 17:33:39 +00:00
|
|
|
<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage<Orchard.Users.ViewModels.UsersIndexViewModel>" %>
|
2009-11-19 06:06:51 +00:00
|
|
|
<%@ Import Namespace="Orchard.Models"%>
|
2009-11-10 17:33:39 +00:00
|
|
|
<%@ Import Namespace="Orchard.Security" %>
|
|
|
|
<%@ Import Namespace="Orchard.Mvc.Html" %>
|
2009-12-02 22:49:30 +00:00
|
|
|
<% Html.Include("AdminHead"); %>
|
2009-12-11 08:29:52 +00:00
|
|
|
<h2>Manage Users</h2>
|
|
|
|
<% using (Html.BeginForm()) { %>
|
|
|
|
<%=Html.ValidationSummary()%>
|
|
|
|
<%=Html.ActionLink("Add a new user", "Create", new { }, new { @class = "floatRight topSpacer" })%>
|
2009-12-12 00:56:02 +00:00
|
|
|
<table class="items">
|
2009-11-10 17:33:39 +00:00
|
|
|
<colgroup>
|
|
|
|
<col id="Name" />
|
|
|
|
<col id="Email" />
|
|
|
|
<col id="Edit" />
|
|
|
|
</colgroup>
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th scope="col">
|
|
|
|
Name
|
|
|
|
</th>
|
|
|
|
<th scope="col">
|
|
|
|
Email
|
|
|
|
</th>
|
|
|
|
<th scope="col">
|
|
|
|
</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
2009-12-11 08:29:52 +00:00
|
|
|
<% foreach (var row in Model.Rows)
|
|
|
|
{ %>
|
2009-11-10 17:33:39 +00:00
|
|
|
<tr>
|
|
|
|
<td>
|
2009-12-11 08:29:52 +00:00
|
|
|
<%=Html.Encode(row.User.UserName)%>
|
2009-11-10 17:33:39 +00:00
|
|
|
</td>
|
|
|
|
<td>
|
2009-12-11 08:29:52 +00:00
|
|
|
<%=Html.Encode(row.User.Email)%>
|
2009-11-10 17:33:39 +00:00
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<%=Html.ActionLink("Edit", "Edit", new { row.User.Id })%>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<%}%>
|
|
|
|
</table>
|
|
|
|
</div>
|
2009-12-11 08:29:52 +00:00
|
|
|
<% } %>
|
2009-12-02 22:49:30 +00:00
|
|
|
<% Html.Include("AdminFoot"); %>
|