15 lines
796 B
Plaintext
15 lines
796 B
Plaintext
|
<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<Portoa.Web.Models.PagingMenuModel>" %>
|
||
|
|
||
|
<% if (!Model.HasNext && !Model.HasPrevious) { 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>
|
||
|
Showing <strong><%= Model.Start %>—<%= Model.ActualEnd %></strong> of <strong><%= Model.TotalCount %></strong>.
|
||
|
</p>
|
||
|
</div>
|