12 lines
		
	
	
		
			635 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			635 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| <%@ 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>
 | |
| 		<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>
 | |
| 	</ul>
 | |
| </asp:Content> |