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>
|