{% extends "html/base_widget.html" %} {% block widget_title %}{% trans %}Newest Achievements{% endtrans %}{% endblock %} {% block widget_content %} {% for a in achievements %}
{% if a.prototype.badge %} Badge {% else %} Badge {% endif %}
{{ a.user.get_username() }}
has been awarded
{{ a.prototype.title }} {% if a.prototype.icon %} Icon {% endif %}
{% if a.text %} Reason:
{{ a.text|striptags }} {% endif %}
{% endfor %} {% endblock %}