2011-02-16 10:11:55 +00:00
|
|
|
<%@ Page Title="" Language="C#" Inherits="System.Web.Mvc.ViewPage<VideoGameQuotes.Web.Models.QualifiedBrowseModel>" MasterPageFile="~/Views/Shared/Site.Master" %>
|
|
|
|
<%@ Import Namespace="VideoGameQuotes.Web.Models" %>
|
2011-02-16 02:48:11 +00:00
|
|
|
<asp:Content runat="server" ID="Title" ContentPlaceHolderID="TitleContent">Browse</asp:Content>
|
|
|
|
|
|
|
|
<asp:Content runat="server" ID="Main" ContentPlaceHolderID="MainContent">
|
|
|
|
<p>
|
2011-02-16 10:11:55 +00:00
|
|
|
Here are some quotes
|
2011-02-16 02:48:11 +00:00
|
|
|
</p>
|
2011-02-16 10:11:55 +00:00
|
|
|
|
|
|
|
<%
|
|
|
|
foreach (var quote in Model.Quotes) {
|
|
|
|
Html.RenderPartial("SingleQuote", new QuoteModel { Quote = quote, User = Model.User });
|
|
|
|
}
|
|
|
|
%>
|
2011-02-16 02:48:11 +00:00
|
|
|
</asp:Content>
|