{% extends "base.html" %} {% load static %} {% load humanize %} {% block content %} {% include "includes/sidenav.html" %}
{% if badge.icon %} {{ badge.title }} Badge {% else %}
{{ badge.title|slice:":1" }}
{% endif %}

{{ badge.title }} Badge

{{ badge.description }}

{% if profiles %}
{% for profile in profiles %}
{% if profile.user_avatar %} {{ profile.user.username }}'s avatar {% else %}
{{ profile.user.username|slice:":1"|upper }}
{% endif %}
Awarded on: {{ profile.awarded_at|date:"F d, Y" }}
{% endfor %}
{% else %}

No users have been awarded this badge yet.

{% endif %}
{% endblock content %}