X-Git-Url: https://git.openstreetmap.org./osqa.git/blobdiff_plain/7608e62fe0292a62f7181c4bdd427adee0ccdfd6..3b5cf11889534f64588a9dabc008e745d2c67c3a:/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 d3806d9..b2659ca 100644
--- a/forum/skins/default/templates/users/stats.html
+++ b/forum/skins/default/templates/users/stats.html
@@ -7,49 +7,41 @@
{% load question_list_tags %}
{% block usercontent %}
- {% declare %}
- question_count = questions.count()
- show_more_questions_link = question_count > 15
- questions = questions[:15]
-
- answer_count = answers.count()
- show_more_answers_link = answer_count > 30
- answers = answers[:30]
- {% enddeclare %}
-
{% spaceless %}
- {% blocktrans count question_count 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 %}
- {% if show_more_questions_link %}
-
- {% endif %}
+
+
+
{% spaceless %}
- {% blocktrans count answer_count 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 %}
- {% if show_more_answers_link %}
-
- {% endif %}
+
+
{% spaceless %}