{% extends 'base.html' %} {% load staticfiles %} {% load i18n %} {% block title %}{% trans 'Network' %}{% endblock %} {% block head %} {% endblock head %} {% block main %}
{% for user in users %}
{% if user.profile.job_title %}

{% trans 'Job Title' %}: {{ user.profile.job_title }}

{% endif %}

{% trans 'Username' %}: {{ user.username }}

{% if user.profile.location %}

{% trans 'Location' %}: {{ user.profile.location }}

{% endif %} {% if user.profile.url %}

{% trans 'Url' %}: {{ user.profile.get_url }}

{% endif %}
{% if forloop.counter|divisibleby:3 %}
{% endif %} {% endfor %}
{% include 'paginator.html' with paginator=users %}
{% endblock main %}