Skip to content

Commit

Permalink
Remove unnecessary directives
Browse files Browse the repository at this point in the history
  • Loading branch information
shashinma committed Jul 8, 2024
1 parent 252d83f commit 3c56314
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions Views/PhoneBook/Index.cshtml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
@using X.PagedList.Web.Common
@using X.PagedList.Mvc.Core
@using Microsoft.AspNetCore.Mvc.TagHelpers
@model X.PagedList.IPagedList<BookEntry>
Expand Down Expand Up @@ -52,7 +51,7 @@
<br />
<table class="table table-striped table-hover table-sm">
<thead class="thead-light">
@if(Model.Any())
@if(Model.Any())
{
var item = Model.First();
<tr>
Expand Down Expand Up @@ -158,4 +157,4 @@
})
</nav>
<br/>
Страница @(Model.PageCount < Model.PageNumber ? 0 : Model.PageNumber) из @Model.PageCount
Страница @(Model.PageCount < Model.PageNumber ? 0 : Model.PageNumber) из @Model.PageCount

0 comments on commit 3c56314

Please sign in to comment.