19 lines
911 B
Plaintext
19 lines
911 B
Plaintext
<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<Portoa.Web.Models.PagingMenuModel>" %>
|
|
|
|
<% if (!Model.ShouldShowMenu) { return; } %>
|
|
|
|
<div class="paging-menu">
|
|
<ul class="menu clearfix">
|
|
<% if (Model.HasNext) { %><li><%= Html.ActionLink("\u25B6", Model.Action, Model.Controller, new { page = (Model.CurrentPage + 1) }, new { title = "next page" })%></li><% } %>
|
|
<li><strong><%= Model.CurrentPage %></strong></li>
|
|
<% if (Model.HasPrevious) { %><li><%= Html.ActionLink("\u25C0", Model.Action, Model.Controller, new { page = (Model.CurrentPage - 1) }, new { title = "previous page" })%></li><% } %>
|
|
</ul>
|
|
|
|
<p>
|
|
<% if (Model.CurrentPageIsValid) { %>
|
|
Showing <strong><%= Model.Start%>—<%= Model.ActualEnd%></strong> of <strong><%= Model.TotalCount%></strong>.
|
|
<% } else { %>
|
|
Nothing to show of <strong><%= Model.TotalCount%></strong>.
|
|
<% } %>
|
|
</p>
|
|
</div> |