{% extends "base.html" %} {% load i18n %} {% block extrajs %} {% endblock %} {% block content %}

{% blocktrans with first_name=user.first_name last_name=user.last_name %}The user "{{ first_name }} {{ last_name }}" has the following awards:{% endblocktrans %} {% trans "Open Mozilla Backpack" %}

{% blocktrans with username=user.username %}You should have a Mozilla Persona account with this email: {{ username }}{% endblocktrans %}
{% for award in award_list %}
{{ award.badge.title }}

{% trans "Download Badge" %} {% trans "Send to Mozilla Backpack" %}

{% if award.badge.description %}

{{ award.badge.description }}

{% endif %}
{% empty %}
{% trans "You haven't earned badges yet." %}
{% endfor %} {% endblock %}