From bb801f2bbd9f26bebca846b71e8947a1951f86a5 Mon Sep 17 00:00:00 2001 From: Evgeny Fadeev Date: Fri, 10 Jul 2009 19:11:34 -0400 Subject: english translation --- templates/tough/unanswered.html | 115 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 115 insertions(+) create mode 100644 templates/tough/unanswered.html (limited to 'templates/tough/unanswered.html') diff --git a/templates/tough/unanswered.html b/templates/tough/unanswered.html new file mode 100644 index 00000000..94e778db --- /dev/null +++ b/templates/tough/unanswered.html @@ -0,0 +1,115 @@ +{% extends "base.html" %} +{% load extra_tags %} +{% load humanize %} +{% load extra_filters %} +{% block title %}{% spaceless %}{% trans "Unanswered questions" %}{% endspaceless %}{% endblock %} +{% block forejs %} + +{% endblock %} +{% block content %} +
+ {% trans "Unanswered questions" %} + +
+ +
+ {% for question in questions.object_list %} +
+

{{ question.get_question_title }}

+
+ + + + + + + + + + + +
{{ question.answer_count|intcomma }} {{ question.score|intcomma }} {{ question.view_count|cnprog_intword|safe }}
{% trans "answers" %}{% trans "votes" %}{% trans "views" %}
+
+
+ {{ question.summary }}... +
+ + {% ifequal tab_id 'active'%} + {% if question.wiki %} + {% trans "community wiki" %} + {% diff_date question.added_at %} + {% else %} +
+ {% comment %}{% gravatar question.last_activity_by 24 %}{% endcomment %} + {{ question.last_activity_by }} + {% get_score_badge question.last_activity_by %} + {% diff_date question.last_activity_at %} +
+ {% endif %} + {% else %} + {% if question.wiki %} + {% trans "community wiki" %} + {% diff_date question.added_at %} + {% else %} +
+ {% comment %}{% gravatar question.author 24 %}{% endcomment %} + {{ question.author }} + {% get_score_badge question.author %} + {% diff_date question.added_at %} +
+ {% endif %} + {% endifequal %} + +
+ {% for tag in question.tagname_list %} + + {% endfor %} +
+
+ {% endfor %} +
+{% endblock %} + +{% block tail %} +
+ {% cnprog_paginator context %} + +
+
+ {% cnprog_pagesize context %} +
+{% endblock %} + +{% block sidebar %} +
+

+ + {% tans "Have a total of" %}

{{ questions_count|intcomma }}
+

{% trans "number of unanswered questions" %}

+

问题按 问题创建时间 排序。最新加入的问题将显示在最前面。

+ +

+
+
+

{% trans "Related tags" %}

+
+
+ {% for tag in tags %} + + × {{ tag.used_count|intcomma }} +
+ {% endfor %} +
+
+
+
+ +{% endblock %} + -- cgit v1.2.3-1-g7c22