diff -r 4576a8264929 -r d01aa5676809 src/cm/templates/site/macros/paginator.html --- a/src/cm/templates/site/macros/paginator.html Mon Jan 25 16:05:02 2010 +0100 +++ b/src/cm/templates/site/macros/paginator.html Tue Jan 26 12:29:05 2010 +0100 @@ -2,13 +2,13 @@ {% load i18n %} {% if page_obj %} - {% if page_obj.has_previous %}«{% else %} {% endif %} + {% if page_obj.has_previous %}«{% else %} {% endif %} {% blocktrans with page_obj.start_index as sindex and page_obj.end_index as eindex and paginator.count as pcount %}{{ sindex }}-{{ eindex }} of {{ pcount }}{% endblocktrans %} - {% if page_obj.has_next %}»{% else %} {% endif %} + {% if page_obj.has_next %}»{% else %} {% endif %} - {% if page_obj.has_previous or page_obj.has_next %}({% blocktrans %}all{% endblocktrans %}){% endif %} + {% if page_obj.has_previous or page_obj.has_next %}({% blocktrans %}all{% endblocktrans %}){% endif %} {% else %} - ({% blocktrans %}paginate{% endblocktrans %}) + ({% blocktrans %}paginate{% endblocktrans %}) {% endif %}