2011-02-27 01:14:56 +00:00
|
|
|
<%@ Page Title="" Language="C#" Inherits="System.Web.Mvc.ViewPage<QualifiedBrowseModel>" MasterPageFile="~/Views/Shared/Site.Master" %>
|
|
|
|
<%@ Import Namespace="Portoa.Web.Models" %>
|
2011-02-16 10:11:55 +00:00
|
|
|
<%@ 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">
|
2011-02-27 01:14:56 +00:00
|
|
|
<% Html.RenderPartial("PagingMenu", new PagingMenuModel(Model.PagedModel)); %>
|
2011-02-16 10:11:55 +00:00
|
|
|
|
|
|
|
<%
|
2011-02-27 01:14:56 +00:00
|
|
|
if (Model.PagedModel.TotalCount > 0) {
|
|
|
|
foreach (var quote in Model.PagedModel.Records) {
|
|
|
|
Html.RenderPartial("SingleQuote", new QuoteModel { Quote = quote, User = Model.CurrentUser });
|
|
|
|
}
|
|
|
|
} else { %>
|
|
|
|
<p>No quotes found.</p>
|
|
|
|
<% }
|
2011-02-16 10:11:55 +00:00
|
|
|
%>
|
2011-02-16 02:48:11 +00:00
|
|
|
</asp:Content>
|