From 2acb62174ab2cac9c7a88faafcb5f0a22a54db6f Mon Sep 17 00:00:00 2001 From: Mike Chen Date: Sun, 5 Jul 2009 10:23:06 +0800 Subject: initiliaze git rep --- templates/unanswered.html | 115 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 115 insertions(+) create mode 100644 templates/unanswered.html (limited to 'templates/unanswered.html') diff --git a/templates/unanswered.html b/templates/unanswered.html new file mode 100644 index 00000000..4012921a --- /dev/null +++ b/templates/unanswered.html @@ -0,0 +1,115 @@ +{% extends "base.html" %} +{% load extra_tags %} +{% load humanize %} +{% load extra_filters %} +{% block title %}{% spaceless %}没有回答的问题{% endspaceless %}{% endblock %} +{% block forejs %} + +{% endblock %} +{% block content %} +
+ 没有回答的问题 + +
+ +
+ {% for question in questions.object_list %} +
+

{{ question.get_question_title }}

+
+ + + + + + + + + + + +
{{ question.answer_count|intcomma }} {{ question.score|intcomma }} {{ question.view_count|cnprog_intword|safe }}
回答票数浏览
+
+
+ {{ question.summary }}... +
+ + {% ifequal tab_id 'active'%} + {% if question.wiki %} + 社区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 %} + 社区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 %} +
+

+ 您正在浏览所有

{{ questions_count|intcomma }}
+

没有回答的 问题。

+ +

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

+ +

+
+
+

相关标签

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