2011-02-21 23:59:06 +00:00
|
|
|
<%@ Page Title="" Language="C#" Inherits="System.Web.Mvc.ViewPage<VideoGameQuotes.Web.Models.PagedModelWithUser<VideoGameQuotes.Api.Quote>>" MasterPageFile="~/Views/Shared/Site.Master" %>
|
2011-02-22 04:05:23 +00:00
|
|
|
<%@ Import Namespace="Portoa.Web.Models" %>
|
2011-02-14 19:48:36 +00:00
|
|
|
<%@ Import Namespace="VideoGameQuotes.Web.Models" %>
|
2011-02-27 04:20:59 +00:00
|
|
|
<asp:Content runat="server" ID="Title" ContentPlaceHolderID="TitleContent">Best</asp:Content>
|
2011-02-14 19:48:36 +00:00
|
|
|
<asp:Content runat="server" ID="Main" ContentPlaceHolderID="MainContent">
|
|
|
|
|
2011-03-02 20:18:33 +00:00
|
|
|
<% Html.RenderPartial("PagingMenu", new PagingMenuModel(Model) { Action = "Best", Controller = "Quote" }); %>
|
2011-02-22 04:05:23 +00:00
|
|
|
|
2011-02-14 19:48:36 +00:00
|
|
|
<%
|
2011-02-21 23:59:06 +00:00
|
|
|
foreach (var quote in Model.Records) {
|
|
|
|
Html.RenderPartial("SingleQuote", new QuoteModel { Quote = quote, User = Model.CurrentUser });
|
2011-02-14 19:48:36 +00:00
|
|
|
}
|
|
|
|
%>
|
2011-02-22 04:05:23 +00:00
|
|
|
</asp:Content>
|