{# vim: set ts=2 et sts=2 sw=2: #} {% extends "customercare/base.html" %} {% from 'includes/common_macros.html' import search_box %} {% set title = _('Join our Army of Awesome') %} {% set hide_plugin_check = True %} {% block breadcrumbs %}{% endblock %} {% block content %}

{{ _('Join our Army of Awesome')|safe }}

{% trans %} Love Firefox and have a few moments to help?
Help other Firefox users on Twitter. Good things will come to those who tweet! {% endtrans %}

  1. {{ _('Choose a tweet below')|safe }}
  2. {{ _('Respond to the tweet!')|safe }}

{{ _('Choose a tweet to help') }}

{{ _('Refresh') }} {% if authed %}
{{ csrf() }}
{% else %} {{ _('Sign in') }} {% endif %}

{% if not tweets %}
{% trans language=settings.LOCALES[request.locale].native %} We couldn't find any recent tweets for {{ language }} at this time. Please check again later or view tweets for other languages by using the language selector at the bottom of the page. {% endtrans %}
{% endif %}
    {% include 'customercare/tweets.html' %}
{% include 'customercare/reply_modal.html' %} {% include 'customercare/twitter_modal.html' %}
{% endblock %} {% block side_promos %}

{{ _('Our army has responded to:') }}

{% if not activity_stats %}

{{ _('Recent stats not available.') }}

{% else %}
{{ _('{percent}% of tweets')|fe(percent=activity_stats[0][1]['perc']|round_percent) }}
{{ _('{num_replies} replies')|fe(num_replies=activity_stats[0][1]['replies']) }}
/
{{ _('{num_requests} tweets')|fe(num_requests=activity_stats[0][1]['requests']) }}
{% endif %}
{% if contributor_stats %} {% for act in activity_stats %} {% set period = act[0] %}
{% for contrib in contributor_stats.get(period, []) %} {{ contrib['username'] }} {% endfor %}
{% endfor %} {% endif %}

{{ _('Take it to the next level!')|safe }}

{% trans join_url=url('wiki.document', 'superheroes-wanted') %} Want to go beyond 140 characters? Join the support community and help many more Firefox users. {% endtrans %}

{% endblock %}