diff options
Diffstat (limited to 'templates/user_stats.html')
-rw-r--r-- | templates/user_stats.html | 134 |
1 files changed, 134 insertions, 0 deletions
diff --git a/templates/user_stats.html b/templates/user_stats.html new file mode 100644 index 00000000..a5be1a77 --- /dev/null +++ b/templates/user_stats.html @@ -0,0 +1,134 @@ +<!-- user_stats.html --> +{% extends "user.html" %} +{% load i18n %} +{% load extra_tags %} +{% load humanize %} + {% block usercontent %} + + <a name="questions"></a> + <table> + <tr> + <td> + <div style="text-align: right;" class="count">{{questions|length}}</div> + </td> + <td> + <h2>{% trans "User questions" %}</h2> + </td> + </tr> + </table> + {% include "users_questions.html" %} + <p> </p> + <a name="answers"></a> + <table> + <tr> + <td> + <div style="text-align: right;" class="count">{{answered_questions|length}}</div> + </td> + <td > + <h2>{% trans "Answers" %}</h2> + </td> + </tr> + </table> + <div class="user-stats-table"> + {% for answered_question in answered_questions %} + <div class="answer-summary"> + <a title="{{answered_question.summary}}" href="/questions/{{answered_question.id}}/{{answered_question.title}}#{{answered_question.answer_id}}"> + <div 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 }} + </div> + </a> + <div class="answer-link"> + <a href="/questions/{{answered_question.id}}/{{answered_question.title}}#{{answered_question.answer_id}}">{{answered_question.title}}</a> {% if answered_question.comment_count %}<span + title="{% blocktrans %}the answer has been commented {{ answered_question.comment_count }} times{% endblocktrans %}">({{answered_question.comment_count}})</span>{% endif %} + </div> + </div> + {% endfor %} + </div> + <p> </p> + <a name="votes"></a> + <table> + <tr> + <td> + <div style="text-align: right;" class="count">{{total_votes}}</div> + </td> + <td > + <h2>{% trans "votes total" %}</h2> + </td> + </tr> + </table> + <div class="user-stats-table"> + <table height="50px"> + <tr> + <td width="60"> + <img style="cursor: default;" align="absmiddle" src="/content/images/vote-arrow-up-on.png"/> + <span title="{% trans "user has voted up this many times" %}" class="vote-count">{{up_votes}}</span> + + </td> + <td width="60"> + <img style="cursor: default;" align="absmiddle" src="/content/images/vote-arrow-down-on.png"/> + <span title="{% trans "user voted down this many times" %}" class="vote-count">{{down_votes}}</span> + + </td> + </tr> + </table> + </div> + <p> </p> + <a name="tags"></a> + <table> + <tr> + <td> + <div style="text-align: right;" class="count">{{tags|length}}</div> + </td> + <td > + <h2>{% trans "Tags" %}</h2> + </td> + </tr> + </table> + <div class="user-stats-table"> + <table class="tags"> + <tr> + <td width="180" valign="top"> + {% 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> + {% if forloop.counter|divisibleby:"10" %} + </td> + <td width="180" valign="top"> + {% endif %} + {% endfor %} + </td> + </tr> + </table> + </div> + <p> </p> + <a name="badges"></a> + <table> + <tr> + <td> + <div style="text-align: right;" class="count">{{total_awards}}</div> + </td> + <td > + <h2>{% trans "Badges" %}</h2> + </td> + </tr> + </table> + <div class="user-stats-table"> + <table> + <tr> + <td width="180" style="line-height:35px"> + {% for award in awards %} + <a href="/badges/{{award.id}}/{{award.name}}" title="{{ award.description }}" class="medal"><span class="badge{{ award.type }}">●</span> {{ award.name }}</a><span class="tag-number"> × {{ award.count|intcomma }}</span><br> + {% if forloop.counter|divisibleby:"6" %} + </td> + <td width="180" style="line-height:35px"> + {% endif %} + {% endfor %} + </td> + </tr> + </table> + </div> + +{% endblock %} +<!-- end user_stats.html --> |