tmont
0dd343cc06
* fixed issue in user provider where if the app restarts you're still logged in but the app doesn't recognize you as such
13 lines
475 B
Plaintext
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>
|