{% extends "layouts/base.html" %} {% load static %} {% block title %}Profiles{% endblock %} {% block extra_css %} {% endblock extra_css %} {% block breadcrumb %} {% endblock breadcrumb %} {% block content %}

{{ total_profiles|default:0 }}

Total Profiles

{{ active_profiles|default:0 }}

Active

{{ incomplete_profiles|default:0 }}

Incomplete

{{ profiles_with_avatar|default:0 }}

With Avatar

Profile Management

Add Profile
{% if profiles %}
{% for profile in profiles %}
{% if profile.avatar %} {{ profile.user.get_full_name }} {% else %}
{% endif %}
{{ profile.user.get_full_name|default:profile.user.username }}

{{ profile.user.email }}

{% if profile.job_title %} {{ profile.job_title }} {% endif %}
Joined {{ profile.user.date_joined|date:"M d, Y" }}
{% if profile.user.is_active %} Active {% else %} Inactive {% endif %}
{% if profile.company or profile.location %}
{% if profile.company %} {{ profile.company }} {% endif %} {% if profile.location %} {{ profile.location }} {% endif %}
{% endif %}
{% endfor %}
{% if is_paginated %} {% endif %} {% else %}
No profiles found

No profiles match your current filters.

Add First Profile
{% endif %}
{% endblock content %} {% block extra_js %} {% endblock extra_js %}