{% extends "base.html" %} {% load url from future %} {% load i18n %} {% load pagination_tags %} {% load sorting_tags %} {% load profile_tags %} {% block head_title %}{% trans "All Profiles" %}{% endblock %} {% block body %}

{% trans "All Profiles" %}

{% trans "Click table headers to sort" %}

{% autosort users %} {% autopaginate users %} {% paginate %} {{ request.user.admin }} {% if request.user.is_staff %} {% endif %} {% for user in users %} {% with user.get_profile as profile %} {% if request.user.is_staff %} {% endif %} {% endwith %} {% endfor %}
{% anchor username User Name %} {% anchor date_joined Date Joined %} {% anchor is_staff Staff %}{% trans "Active" %}{% trans "Github" %} {% trans "BitBucket" %}
{% if profile.github_account %}{{ profile.github_account }} {% else %} {{ user.username }} {% endif %} {{ user.date_joined|date:"YmdHis" }}{{ user.date_joined|timesince }} {% if user.is_staff %} {% else %} {% endif %} {% if user.is_active %} {% else %} {% endif %} {{ profile.github_account|default:"" }} {{ profile.bitbucket_url|default:"" }}
{% paginate %} {% endblock %}