2011-02-17 20:55:47 +00:00
|
|
|
<%@ Page Title="" Language="C#" Inherits="System.Web.Mvc.ViewPage" MasterPageFile="~/Views/Shared/Site.Master" %>
|
|
|
|
<asp:Content runat="server" ID="Title" ContentPlaceHolderID="TitleContent">Admin</asp:Content>
|
|
|
|
<asp:Content runat="server" ID="Main" ContentPlaceHolderID="MainContent">
|
|
|
|
<h2>Site Administration</h2>
|
|
|
|
|
|
|
|
<ul>
|
2011-03-02 20:18:33 +00:00
|
|
|
<li><%= Html.ActionLink("Create admin", "Create", "Admin") %></li>
|
|
|
|
<li><%= Html.ActionLink("Change password", "Password", "Admin") %></li>
|
|
|
|
<li><%= Html.ActionLink("View quote flags", "Flags", "Admin") %></li>
|
|
|
|
<li><%= Html.ActionLink("Manage users", "Users", "Admin") %></li>
|
2011-02-17 20:55:47 +00:00
|
|
|
</ul>
|
|
|
|
</asp:Content>
|