{% extends 'base/base.html' %} {% load static %} {% block title %} Members{% endblock %} {% block body %} {% include 'base/nav-bar.html' %}

Club Members

{% for user_info in object_list %} {% if user_info.user.is_active %}
{% if user_info.profile_pic %} {% else %} {% endif %}

{{ user_info.user.first_name }} {{ user_info.user.last_name }}

{{ user_info.small_intro }}

{% if user_info.gitHub %} {% endif %} {% if user_info.blog %} {% endif %} {% if user_info.linkedIn %} {% endif %} {% if user_info.googlePlus %} {% endif %} {% if user_info.facebook %} {% endif %} {% if user_info.twitter %} {% endif %}
{% endif %} {% endfor %}
{% include 'base/footer.html' %} {% endblock %}