Tiny pagination style changes

This commit is contained in:
Jef van Schendel 2011-07-01 20:14:38 +02:00
parent c26601a8a6
commit bf332e827e
2 changed files with 6 additions and 1 deletions

View File

@ -155,6 +155,10 @@ a.mediagoblin_logo:hover {
padding-right:11px;
}
.pagination{
text-align:center;
}
/* forms */
.form_box {

View File

@ -19,7 +19,7 @@
{% if pagination %}
<div class="pagination">
<p>
{% if pagination.has_prev %}
<a href="{{ pagination.get_page_url(request, pagination.page-1) }}">&laquo; Prev</a>
{% endif %}
@ -39,6 +39,7 @@
{% if pagination.has_next %}
<a href="{{ pagination.get_page_url(request, pagination.page + 1) }}">Next &raquo;</a>
{% endif %}
</p>
</div>
{% endif %}