{# vim: set ts=2 et sts=2 sw=2: #} {% extends "questions/base.html" %} {% set title = _('Firefox Support Forum') %} {% set classes = 'questions' %} {% set crumbs = [(None, _('Forum'))] %} {% set canonical_url = unlocalized_url('questions.questions')|urlparams(filter=filter, sort=sort, tagged=tagged) %} {% if questions.number > 1 %} {% set canonical_url = canonical_url|urlparams(page=questions.number) %} {% endif %} {% block above_main %}

{{ _('Firefox Support Forum') }}

{{ _('The Official Community-Driven Support Web Site for Firefox') }}

{% endblock %} {% block content %} {% if tags %}
{{ _('Showing questions tagged:') }} {% for tag in tags -%} {{ tag.name }} {%- endfor %} {{ _('Show all questions') }}
{% endif %}
{{ _('Sort:') }} {{ _('Show:') }}
{% if questions.object_list %}
    {% for question in questions.object_list %}
  1. {{ question.title }}

    {{ question.content_parsed|striptags()|truncate(170) }}

    {{ question.creator }}
    {{ datetimeformat(question.created, format='longdatetime') }}
    {% include 'questions/includes/have_problem.html' %}
    {% if question.is_solved %} {{ _('Solved') }} {% endif %} {% if question.num_answers > 0 %} {# L10n: {n} is the number of replies. #} {{ ngettext('1 reply', '{n} replies', question.num_answers)|f(n=question.num_answers) }} {% else %} {{ _('No replies') }} {% endif %} {% if question.num_answers > 0 and question.last_answer %} {{ _('last reply by {user}')|f(user=question.last_answer.creator.username) }} {% endif %} {% if question.is_locked %} {{ _('Locked') }} {% endif %} {% if question.is_contributor(user) %} {{ _('Contributed') }} {% endif %} {% set tags = question.my_tags %} {% if tags %}
      {% for tag in tags %}
    • {{ tag }}
    • {% endfor %}
    {% endif %}
  2. {% endfor %}
{{ questions|paginator }} {% else %} {# Not localized because it's not worth localizers time. #}

There are no questions. Maybe you should ask some!

{% endif %} {% endblock %} {% block side %}
{{ _('Filter Questions') }}

{{ _('Filter') }}

{{ _('Ex: Firefox 7, crash') }}

{{ super() }} {% endblock %}