From 3c4c71fc19865bfb75231c425fae31c6b2c211de Mon Sep 17 00:00:00 2001 From: Evgeny Fadeev Date: Tue, 9 Feb 2010 16:48:38 -0500 Subject: started working towards skinning forum app - first step - move templates to app --- templates/user_stats.html | 138 ---------------------------------------------- 1 file changed, 138 deletions(-) delete mode 100644 templates/user_stats.html (limited to 'templates/user_stats.html') diff --git a/templates/user_stats.html b/templates/user_stats.html deleted file mode 100644 index ecc39807..00000000 --- a/templates/user_stats.html +++ /dev/null @@ -1,138 +0,0 @@ -{% extends "user.html" %} - -{% load i18n %} -{% load extra_tags %} -{% load extra_filters %} -{% load humanize %} - {% block usercontent %} - - - {% spaceless %} -

- {% blocktrans count questions|length as counter %} - 1 Question - {% plural %} - {{counter}} Questions - {% endblocktrans %} -

- {% endspaceless %} - {% include "users_questions.html" %} - - {% spaceless %} -

- {% blocktrans count answered_questions|length as counter %} - 1 Answer - {% plural %} - {{counter}} Answers - {% endblocktrans %} -

- {% endspaceless %} -
- {% for answered_question in answered_questions %} -
- - - {{ answered_question.vote_count }} - - - -
- {% endfor %} -
-
- - {% spaceless %} -

- {% blocktrans count total_votes as cnt %} - 1 Vote - {% plural %} - {{cnt}} Votes - {% endblocktrans %} -

- {% endspaceless %} -
- - - - - -
- {% trans - {{up_votes}} - - - {% trans - {{down_votes}} - -
-
- - {% spaceless %} -

- {% blocktrans count user_tags|length as counter %} - 1 Tag - {% plural %} - {{counter}} Tags - {% endblocktrans %} -

- {% endspaceless %} -
- - - - - -
- {% for tag in user_tags%} - - × {{ tag.user_tag_usage_count|intcomma }}
- {% if forloop.counter|divisibleby:"10" %} -
- {% endif %} - {% endfor %} -
-
- - {% spaceless %} -

- {% blocktrans count total_awards as counter %} - 1 Badge - {% plural %} - {{counter}} Badges - {% endblocktrans %} -

- {% endspaceless %} -
- - - - - -
- {% for award in awards %} -  {{ award.name }} ✕ {{ award.count|intcomma }}
- {% if forloop.counter|divisibleby:"6" %} -
- {% endif %} - {% endfor %} -
-
-{% endblock %} - -- cgit v1.2.3-1-g7c22