{% extends "base-print.html" %} {% block title %}{% trans "Current Members Roster" %} | {{ SITE_GLOBAL_SITEDISPLAYNAME }}{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block content %}
{% if member.user.first_name or member.user.last_name %}{{ member.user.first_name }} {{ member.user.last_name }}{% else %}{{ member.user.username }}{% endif %}
{% trans "Member Number" %}: {{ member.member_number }} {% with member.user.corpmembershiprep_set.all.0 as rep %} {% if rep %} {% if rep.is_dues_rep %}{% trans "Dues Rep for: " %}{% else %}{% trans "Contact Rep for: " %}{% endif %} {{ rep.corp_profile.name }} {% else %} {% trans "Membership Type" %}: {{ member.membership_type }} {% endif %} {% endwith %} {{ member.user.email }} {% if member.user.profile.position_title %} {{ member.user.profile.position_title }} {% endif %} {% if member.user.profile.company %} {{ member.user.profile.company }} {% endif %} {% if member.user.profile.phone %} {% trans "Phone" %}: {{ member.user.profile.phone }} {% endif %} {% if member.user.profile.fax %} {% trans "Fax" %}: {{ member.user.profile.fax }} {% endif %} {% if member.user.profile.address %} {{ member.user.profile.address }} {% endif %} {% if member.user.profile.city %} {{ member.user.profile.city }} {% endif %} {% if member.user.profile.state %} {{ member.user.profile.state }} {% endif %} |
{% empty %}