<div class="pagenavi" style="border-{{ displine }}: 1px solid #03a9a5;">
<div class="pageDisp" style="font-weight: bold; font-size: 14px;">
{{pager.anKaishi}}~{{pager.anOwari}}までを表示中(履歴数:{{ orderCnt }})
</div>
<div class="pageNumber" style="float:right;">
{% if pager.next is not null %}
<a href="?{% if pager.params_url is not empty %}{{ pager.params_url }}{% endif %}page={{ pager.next }}">
<img src="https://img0.land-mark.biz/ut_img/public_images/search/page_next.gif" width="47" height="23" alt="次へ">
</a>
{% endif %}
<table>
<tr>
{% for key, page in pager.page_list %}
{% if page == pager.page %}
<td class='num select'>{{ page }}</td>
{% else %}
<td class='num'><a href="?{% if pager.params_url is not empty %}{{ pager.params_url }}{% endif %}{% if page !=1 %}page={{ page }}{% endif %}">{{ page }}</a></td>
{% endif %}
{% endfor %}
</tr>
</table>
{% if pager.prev is not null %}
<a href="?{% if pager.params_url is not empty %}{{ pager.params_url }}{% endif %}page={{ pager.prev }}">
<img src="https://img0.land-mark.biz/ut_img/public_images/search/page_back.gif" width="47" height="23" alt="前へ">
</a>
{% endif %}
</div>
</div>
<br class="clear" />