diff options
author | Evgeny Fadeev <evgeny.fadeev@gmail.com> | 2009-08-10 21:40:01 -0400 |
---|---|---|
committer | Evgeny Fadeev <evgeny.fadeev@gmail.com> | 2009-08-10 21:40:01 -0400 |
commit | 1eacc7a42618e84766477fbcc2c32a1da3547115 (patch) | |
tree | 23b90f5410c1dfd94704cbb38aad2bdf32cf0f5f /templates/unanswered.html | |
parent | 0f607d83e801192977bff15c256456fa2f44ff85 (diff) | |
download | askbot-1eacc7a42618e84766477fbcc2c32a1da3547115.tar.gz askbot-1eacc7a42618e84766477fbcc2c32a1da3547115.tar.bz2 askbot-1eacc7a42618e84766477fbcc2c32a1da3547115.zip |
untested commit. merged Adolfos mods, validated most of html, slugify urls, fixed IE issues in openid signin
Diffstat (limited to 'templates/unanswered.html')
-rw-r--r-- | templates/unanswered.html | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/templates/unanswered.html b/templates/unanswered.html index 13b3a3b2..a56d3ae3 100644 --- a/templates/unanswered.html +++ b/templates/unanswered.html @@ -95,9 +95,6 @@ <div class="boxC"> <p> {% blocktrans with questions_count|intcomma as num_q %}have {{num_q}} unanswered questions{% endblocktrans %} - {% comment %} - {% trans "Have a total of" %}<br><div class="questions-count">{{ questions_count|intcomma }}</div> - {% endcomment %} <!---<p>问题按 <strong>问题创建时间</strong> 排序。最新加入的问题将显示在最前面。</p>--> </p> </div> @@ -107,14 +104,13 @@ <div class="tags"> {% for tag in tags %} <a rel="tag" title="{% trans "see questions tagged"%}'{{ tag.name }}'{% trans "using tags" %}" href="{% url forum.views.tag tag.name|urlencode %}">{{ tag.name }}</a> - <span class="tag-number">× {{ tag.used_count|intcomma }}</span> - <br> + <span class="tag-number"> ✕ {{ tag.used_count|intcomma }}</span> + <br/> {% endfor %} - <br> + <br/> </div> </div> </div> {% endblock %} - <!-- end unanswered.html --> |