X-Git-Url: https://git.openstreetmap.org./osqa.git/blobdiff_plain/410bfa05ee36ed1d99356c443a5f3f6aa3ee9578..77c7fb49881b1df98ce3584468105ba78740fd48:/forum/skins/default/templates/users/stats.html
diff --git a/forum/skins/default/templates/users/stats.html b/forum/skins/default/templates/users/stats.html
index adc6e12..b2659ca 100644
--- a/forum/skins/default/templates/users/stats.html
+++ b/forum/skins/default/templates/users/stats.html
@@ -6,40 +6,47 @@
{% load humanize %}
{% load question_list_tags %}
{% block usercontent %}
-
+
{% spaceless %}
- {% blocktrans count questions|length as counter %}
- 1 Question
+ {% blocktrans count questions.paginator.count as counter %}
+ {{counter}} Question
{% plural %}
{{counter}} Questions
{% endblocktrans %}
+
{% endspaceless %}
-
- {% for question in questions %}
+
{{ questions.paginator.sort_tabs }}
+
+ {% for question in questions.paginator.page %}
{% question_list_item question favorite_count=yes signature_type=badges %}
{% endfor %}
+
+
+
{% spaceless %}
- {% blocktrans count answers|length as counter %}
- 1 Answer
+ {% blocktrans count answers.paginator.count as counter %}
+ {{counter}} Answer
{% plural %}
{{counter}} Answers
{% endblocktrans %}
{% endspaceless %}
+
{{ answers.paginator.sort_tabs }}
- {% for answer in answers %}
+ {% for answer in answers.paginator.page %}
{% endfor %}
-
+
+
+
{% spaceless %}