{% extends "base.html" %} {% load i18n %} {% load extra_tags %} {% load humanize %} {% load extra_filters %} {% block title %}{% spaceless %}{% trans "Home" %}{% endspaceless %}{% endblock %} {% block meta %} {% endblock %} {% block forejs %} {% endblock %} {% block content %}
{% trans "Questions" %}
{% trans "newest" %} {% trans "hottest" %} {% trans "most voted" %} {% trans "all questions" %}
{% for question in questions %}

{{ 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 }}...
{% if question.wiki %} {% trans "community wiki" %} {% diff_date question.last_activity_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 %}
{% for tag in question.tagname_list %} {% endfor %}
{% endfor %}
{% endblock %} {% block sidebar %} {% if not request.user.is_authenticated %}

{% trans "welcome to website" %}

{{ APP_INTRO|safe }}
{% endif %}

{% trans "Recent tags" %}

{% for tag in tags %} {% endfor %}

{% trans "Recent awards" %}

{% trans "subscribe to the questions feed" %}
{% endblock %} {% block tail %}
{% trans "Still looking for more? See" %} {% trans "complete list of quesionts" %}, {% trans "or" %} {% trans "popular tags" %}{% trans "." %} {% trans "Please help us answer" %} {% trans "unanswered questions" %}{% trans "." %}
{% endblock %}