summaryrefslogtreecommitdiffstats
path: root/templates/user_stats.html
diff options
context:
space:
mode:
authorroot <root@u15356270.onlinehome-server.com>2009-11-13 20:18:55 -0500
committerroot <root@u15356270.onlinehome-server.com>2009-11-13 20:31:40 -0500
commit7e4f1d542e00b4d3121da6ae5524e95867f2371b (patch)
tree5a3edfb81cc137dbc877f75f9bde80e9720b3ba0 /templates/user_stats.html
parent3a4b6ad43221abc0e0ff345d9368c3348b312128 (diff)
downloadaskbot-7e4f1d542e00b4d3121da6ae5524e95867f2371b.tar.gz
askbot-7e4f1d542e00b4d3121da6ae5524e95867f2371b.tar.bz2
askbot-7e4f1d542e00b4d3121da6ae5524e95867f2371b.zip
better comments, email subscriptions, corrected view counter, some ie7 issues, wiki optional with settings.WIKI_ON, site can be mounted on arbitrary url prefix, english language improvements, added feedback form, versioned css and js files to force browser cache reload when settings.RESOURCE_REVISION is incremented , other fixes
Diffstat (limited to 'templates/user_stats.html')
-rw-r--r--templates/user_stats.html70
1 files changed, 58 insertions, 12 deletions
diff --git a/templates/user_stats.html b/templates/user_stats.html
index 07578cb7..2b7949e8 100644
--- a/templates/user_stats.html
+++ b/templates/user_stats.html
@@ -7,43 +7,74 @@
{% block usercontent %}
<a name="questions"></a>
- <h2><span class="count">{{questions|length}}</span> {% trans "User questions" %}</h2>
+ {% spaceless %}
+ <h2>
+ {% blocktrans count questions|length as counter %}
+ <span class="count">1</span> Question
+ {% plural %}
+ <span class="count">{{counter}}</span> Questions
+ {% endblocktrans %}
+ </h2>
+ {% endspaceless %}
{% include "users_questions.html" %}
<a name="answers"></a>
- <h2><span class="count">{{answered_questions|length}}</span> {% trans "Answers" %}</h2>
+ {% spaceless %}
+ <h2>
+ {% blocktrans count answered_questions|length as counter %}
+ <span class="count">1</span> Answer
+ {% plural %}
+ <span class="count">{{counter}}</span> Answers
+ {% endblocktrans %}
+ </h2>
+ {% endspaceless %}
<div class="user-stats-table">
{% for answered_question in answered_questions %}
<div class="answer-summary">
<a title="{{answered_question.summary|collapse}}"
- href="{% url questions %}{{answered_question.id}}/{{answered_question.title}}#{{answered_question.answer_id}}">
+ href="{% url question answered_question.id %}{{answered_question.title|slugify}}#{{answered_question.answer_id}}">
<span class="answer-votes {% if answered_question.accepted %}answered-accepted{% endif %}"
title="{% blocktrans with answered_question.vote_count as vote_count %}the answer has been voted for {{ vote_count }} times{% endblocktrans %} {% if answered_question.accepted %}{% trans "this answer has been selected as correct" %}{%endif%}">
{{ answered_question.vote_count }}
</span>
</a>
<div class="answer-link">
- <a href="{% url questions %}{{answered_question.id}}/{{answered_question.title}}#{{answered_question.answer_id}}">{{answered_question.title}}</a>
+ {% spaceless %}
+ <a href="{% url question answered_question.id %}{{answered_question.title|slugify}}#{{answered_question.answer_id}}">{{answered_question.title}}</a>
+ {% endspaceless %}
{% if answered_question.comment_count %}
<span>
- {% blocktrans with answered_question.comment_count as comment_count %}the answer has been commented {{ comment_count }} times{% endblocktrans %}
+ {% blocktrans count answered_question.comment_count as comment_count %}
+ (one comment)
+ {% plural %}
+ the answer has been commented {{comment_count}} times
+ {% endblocktrans %}
</span>
{% endif %}
</div>
</div>
{% endfor %}
</div>
+ <br/>
<a name="votes"></a>
- <h2><span class="count">{{total_votes}}</span> {% trans "Votes" %}</h2>
+ {% spaceless %}
+ <h2>
+ {% blocktrans count total_votes as cnt %}
+ <span class="count">1</span> Vote
+ {% plural %}
+ <span class="count">{{cnt}}</span> Votes
+ {% endblocktrans %}
+ </h2>
+ {% endspaceless %}
<div class="user-stats-table">
<table>
<tr>
<td width="60">
- <img style="cursor: default;" src="/content/images/vote-arrow-up-on.png" alt="{% trans "thumb up" %}" />
+ <img style="cursor: default;" src="{% href "/content/images/vote-arrow-up-on.png" %}" alt="{% trans "thumb up" %}" />
<span title="{% trans "user has voted up this many times" %}" class="vote-count">{{up_votes}}</span>
</td>
<td width="60">
- <img style="cursor: default;" src="/content/images/vote-arrow-down-on.png" alt="{% trans "thumb down" %}" />
+ <img style="cursor: default;" src="{% href "/content/images/vote-arrow-down-on.png" %}" alt="{% trans "thumb down" %}" />
<span title="{% trans "user voted down this many times" %}" class="vote-count">{{down_votes}}</span>
</td>
@@ -51,7 +82,15 @@
</table>
</div>
<a name="tags"></a>
- <h2><span class="count">{{tags|length}}</span> {% trans "Tags" %}</h2>
+ {% spaceless %}
+ <h2>
+ {% blocktrans count tags|length as counter %}
+ <span class="count">1</span> Tag
+ {% plural %}
+ <span class="count">{{counter}}</span> Tags
+ {% endblocktrans %}
+ </h2>
+ {% endspaceless %}
<div class="user-stats-table">
<table class="tags">
<tr>
@@ -59,7 +98,7 @@
{% for tag in tags%}
<a rel="tag"
title="{% blocktrans %}see other questions tagged '{{ tag }}' {% endblocktrans %}"
- href="{% url forum.views.tag tag|urlencode %}">{{tag.name}}</a><span class="tag-number"> × {{ tag.used_count|intcomma }}</span><br/>
+ href="{% url forum.views.tag tag|urlencode %}">{{tag.name}}</a><span class="tag-number"> &#215; {{ tag.used_count|intcomma }}</span><br/>
{% if forloop.counter|divisibleby:"10" %}
</td>
<td width="180" valign="top">
@@ -70,7 +109,15 @@
</table>
</div>
<a name="badges"></a>
- <h2><span class="count">{{total_awards}}</span> {% trans "Badges" %}</h2>
+ {% spaceless %}
+ <h2>
+ {% blocktrans count total_awards as counter %}
+ <span class="count">1</span> Badge
+ {% plural %}
+ <span class="count">{{counter}}</span> Badges
+ {% endblocktrans %}
+ </h2>
+ {% endspaceless %}
<div class="user-stats-table">
<table>
<tr>
@@ -86,6 +133,5 @@
</tr>
</table>
</div>
-
{% endblock %}
<!-- end user_stats.html -->