{# vim: set ts=2 et sts=2 sw=2: #} {% extends "questions/base.html" %} {# TODO: Make the title and other references to FF configurable. #} {% set title = _('Firefox Support Forum') %} {% set classes = 'questions' %} {% set crumbs = [(None, _('Forum'))] %} {% block above_main %}

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

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

{% endblock %} {% block content %} {% if tags %}
{{ _('Showing questions tagged:') }} {% set comma = joiner(', ') %} {% for tag in tags %}{{ comma() }} {{ 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.solution %} {{ _('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.is_locked %} {{ _('Locked') }} {% endif %} {% if question.is_contributor(user) %} {{ _('Contributed') }} {% endif %} {% set tags = question.tags.all() %} {% 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 %}