2011-02-24 22:45:29 +00:00
|
|
|
<%@ Page Title="" Language="C#" Inherits="System.Web.Mvc.ViewPage<PagedModelWithUser<VideoGameQuotes.Api.Quote>>" MasterPageFile="~/Views/Shared/Site.Master" %>
|
|
|
|
<%@ Import Namespace="Portoa.Web.Models" %>
|
2011-02-14 11:01:31 +00:00
|
|
|
<%@ Import Namespace="VideoGameQuotes.Web.Models" %>
|
2011-02-24 22:45:29 +00:00
|
|
|
<asp:Content runat="server" ID="Title" ContentPlaceHolderID="TitleContent">Recent: <%= Model.Start %>–<%= Model.End %></asp:Content>
|
2011-02-14 11:01:31 +00:00
|
|
|
<asp:Content runat="server" ID="Main" ContentPlaceHolderID="MainContent">
|
2011-02-24 22:45:29 +00:00
|
|
|
<% Html.RenderPartial("PagingMenu", new PagingMenuModel(Model) { Action = "recent", Controller = "quote" }); %>
|
|
|
|
|
|
|
|
<%
|
|
|
|
foreach (var quote in Model.Records) {
|
|
|
|
Html.RenderPartial("SingleQuote", new QuoteModel { Quote = quote, User = Model.CurrentUser });
|
2011-02-14 11:01:31 +00:00
|
|
|
}
|
|
|
|
%>
|
|
|
|
</asp:Content>
|