X-Git-Url: https://git.openstreetmap.org./osqa.git/blobdiff_plain/7608e62fe0292a62f7181c4bdd427adee0ccdfd6..426c13f4005f004594d6c684873ff8ef81128eb5:/forum/skins/default/templates/users/stats.html?ds=sidebyside
diff --git a/forum/skins/default/templates/users/stats.html b/forum/skins/default/templates/users/stats.html
index d3806d9..22b32cf 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 %}
+ {% 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 %}
- {% if show_more_questions_link %}
-
- {% endif %}
+
+
+
{% spaceless %}
- {% blocktrans count answer_count 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 %}
- {% if show_more_answers_link %}
-
- {% endif %}
+
+
{% spaceless %}
@@ -110,8 +99,8 @@
{% endspaceless %}