vgquotes/Src/VideoGameQuotes.Web/Views/Admin/Flags.aspx
tmont 0dd343cc06 * flagged quote admin page
* fixed issue in user provider where if the app restarts you're still logged in but the app doesn't recognize you as such
2011-02-18 01:46:02 +00:00

13 lines
475 B
Plaintext

<%@ Page Title="" Language="C#" Inherits="System.Web.Mvc.ViewPage<IEnumerable<VideoGameQuotes.Api.Quote>>" MasterPageFile="~/Views/Shared/Site.Master" %>
<asp:Content runat="server" ID="Title" ContentPlaceHolderID="TitleContent">Quote Flags</asp:Content>
<asp:Content runat="server" ID="Main" ContentPlaceHolderID="MainContent">
<h2>Flagged Quotes</h2>
<%
foreach (var quote in Model) {
Html.RenderPartial("FlaggedQuote", quote);
}
%>
</asp:Content>