summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2014-01-26 17:43:21 -0300
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2014-01-26 17:43:21 -0300
commit42770b82ed9ae25fb7b7b6f7ba5d439efd3b9f5b (patch)
tree356583a7923c2da2ac981179dabdbf9920f6bbec
parent4c2ea58d56b271ced7159e8110823dd2bd6214a4 (diff)
downloadaskbot-42770b82ed9ae25fb7b7b6f7ba5d439efd3b9f5b.tar.gz
askbot-42770b82ed9ae25fb7b7b6f7ba5d439efd3b9f5b.tar.bz2
askbot-42770b82ed9ae25fb7b7b6f7ba5d439efd3b9f5b.zip
added class to an html element in the main page paginator macro
-rw-r--r--askbot/templates/macros.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/askbot/templates/macros.html b/askbot/templates/macros.html
index 63ed93b3..326a604f 100644
--- a/askbot/templates/macros.html
+++ b/askbot/templates/macros.html
@@ -767,7 +767,7 @@ for the purposes of the AJAX comment editor #}
{% for num in p.page_numbers %}
{% if num == p.page and p.pages != 1%}
- <span class="curr" title="{% trans %}current page{% endtrans %}">{{ num }}</span>
+ <span class="curr page" title="{% trans %}current page{% endtrans %}"><a>{{ num }}</a></span>
{% else %}
<span class="page"><a href="{{ search_state.change_page(num).full_url() }}" title="{% trans %}page {{num}}{% endtrans %}">{{ num }}</a></span>
{% endif %}