X-Git-Url: https://git.openstreetmap.org./osqa.git/blobdiff_plain/410bfa05ee36ed1d99356c443a5f3f6aa3ee9578..426c13f4005f004594d6c684873ff8ef81128eb5:/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..22b32cf 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 %}
+ {% blocktrans count questions.paginator.count as counter %}
1 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 %}
+ {% blocktrans count answers.paginator.count as counter %}
1 Answer
{% plural %}
{{counter}} Answers
{% endblocktrans %}
{% endspaceless %}
+
{{ answers.paginator.sort_tabs }}
- {% for answer in answers %}
+ {% for answer in answers.paginator.page %}
{% endfor %}
-
+
+
+
{% spaceless %}
@@ -90,8 +99,8 @@
{% endspaceless %}