{% trans 'Company Details' %}
{% trans 'Parent Entity' %}
{{ corp_profile.parent_entity }}
{% if corp_profile.account_id %}
{% trans 'Account ID' %}
{{ corp_profile.account_id }}
{% endif %}
{% trans 'Company Name' %}
{{ corp_profile.name }}
{% trans 'Email' %}
{{ corp_profile.email }}
{% trans 'Phone' %}
{{ corp_profile.phone }}
{% if corp_profile.phone2 %}
{% trans 'Phone2' %}
{{ corp_profile.phone2 }}
{% endif %}
{% trans 'Website' %}
{{ corp_profile.url }}
{% trans 'Address' %}
{{ address_str }}
{% trans 'Membership Level' %}
{% trans 'Membership Type:' %} {{ corp_membership.corporate_membership_type }}
{{ corp_membership.join_dt|date:"M j, Y" }}
{% if not corp_membership.is_pending %} - {% firstof corp_membership.expiration_dt|date:"M j, Y" "Forever" %} {% endif %}
{% include "corporate_memberships/action_options.html" %}
{% trans 'Payment Method' %}
{% trans 'Payment Method:' %}
{% if corp_membership.payment_method and corp_membership.invoice %}
{{ corp_membership.payment_method }}
-
{% trans 'View Invoice' %}
{% else %}
{% trans 'N/A' %}
{% endif %}
{% if invoices|length > 1 %}
{% endif %}
{% trans 'Members' %}
{% if corp_membership.real_time_status_detail == 'active' %}
{% endif %}
{% if members_first10 %}
{% trans 'Name' %} |
{% trans 'Title' %} |
{% for member in members_first10 %}
{% if member.user.first_name or member.user.last_name %}{{ member.user.first_name }} {{ member.user.last_name }}{% else %}{{ member.user.username }}{% endif %} |
{{ member.user.profile.position_title }} |
{% endfor %}
{% if members_count > 10 %}
{% endif %}
{% else %}
{% trans "No members joined yet" %}
{% endif %}
{% if MODULE_CORPORATE_MEMBERSHIPS_USEPRODUCTS %}
{% trans 'Products' %}
{% trans "Name" %} |
{% trans "Category" %} |
{% with corp_profile.products.all as products %}
{% for product in products %}
{{ product.name }} |
{{ product.category }} |
{% endfor %}
{% endwith %}
{% endif %}
{% with corp_profile.branches.all as branches %}
{% if branches %}
{% trans 'Branches' %}
{% for branch in branches %}
{% if forloop.counter0|divisibleby:"2"%}
{% if not forloop.first %}
{% endif %}
{% endif %}
{{ branch.name }}
{{ branch.address }}
{{ branch.city_state_zip }} {{ branch.country }}
{% if branch.phone %}
{% trans 'Phone:' %} {{ branch.phone }}
{% endif %}
{% if branch.fax %}
{% trans 'Fax:' %} {{ branch.fax }}
{% endif %}
{% endfor %}
{% endif %}
{% include "corporate_memberships/timeline.html" %}
{% include "corporate_memberships/directory_link.html" %}