{% extends "home/base.html" %} {% load staticfiles i18n %} {% block users_class %}class="active"{% endblock %} {% block content %}

{% trans "people"|upper %}

    {% for userprofile in userprofile_list %}

    {{ userprofile.user }}

    {{ userprofile.bio|truncatewords:12 }}

    {% empty %}

    {% trans "No userprofiles are available"|upper %}

    {% endfor %}
{% endblock %}