{% trans 'Contact Information' %}
| {% trans 'Username' %} |
{{ profile.user.username }} |
{% if profile.account_id %}
| {% trans 'Account ID' %} |
{{ profile.account_id }} |
{% endif %}
{% if can_edit or not profile.hide_email %}
| {% trans 'Email' %} |
{{ user_this.email }} |
{% endif %}
{% if can_edit or not profile.hide_phone %}
| {% trans 'Phone' %} |
{% firstof profile.phone|phonenumber profile.phone2|phonenumber %} |
{% endif %}
| {% trans 'Website' %} |
{{ profile.url }} |
{% if can_edit or not profile.hide_address %}
{% if profile.region %}
| {% trans 'Region' %} |
{{ profile.get_region_name }} |
{% endif %}
| {% trans 'Address' %} |
{{ profile.address }} {{ city_state_zip }} |
{% endif %}
{% if profile.county %}
| {% trans 'County' %} |
{{ profile.county }} |
{% endif %}
{% if industries %}
| {% trans 'Industry' %} |
{% for industry in industries %}
{{ industry }}{% if not forloop.last %}, {% endif %}
{% endfor %}
|
{% endif %}
{% if request.user.profile.is_superuser %}
{% trans 'Admin Notes' %}
{% if profile.admin_notes %}
{{ profile.admin_notes }}
{% else %}
{% trans 'No admin notes' %}.
{% endif %}
{% endif %}
{% if user_this.educations.all %}
{% trans 'Education History' %}
{% for education in user_this.educations.all %}
| {% trans 'School' %}: |
{{ education.school }} |
{% trans 'Major' %}: |
{{ education.major }} |
| {% trans 'Degree' %}: |
{{ education.degree }} |
{% trans 'Graduation Date' %}: |
{{ education.graduation_year }} |
{% endfor %}
{% endif %}
{% if request.user == user_this or can_edit %}
{% trans 'Groups' %}
{% if request.user == user_this or admin %}
S
{% endif %}
{% if group_memberships %}
{% else %}
{% trans 'Not in any groups.' %}
{% endif %}
{% endif %}
{% if request.user == user_this or can_edit %}
{% if profile.has_released_credits %}
{% endif %}
{% if MODULE_MEMBERSHIPS_ENABLED %}
{% trans 'Memberships' %}
{% if membership_apps %}
+
{% else %}
+
{% endif %}
{% if multiple_apps %}
{% for app in membership_apps %}
{% endfor %}
{% endif %}
{% if memberships %}
{% if can_auto_renew %}
{% endif %}
{% for membership in memberships %}
|
{% if request.user.profile.is_superuser or request.user == membership.user %}
{{ membership.membership_type }}
{% else %}
{{ membership.member_number }} {{ membership.membership_type }}
{% endif %}
|
{{ membership.join_dt|date:"DATE_FORMAT" }}
{% if not membership.is_pending %} - {% firstof membership.expire_dt|date:"DATE_FORMAT" "Forever" %}
+ (grace period:
{{ membership.membership_type.expiration_grace_period }} days)
{% endif %}
{{ membership.get_status|capfirst}}
|
{% with membership.get_invoice as invoice %}
{% if invoice %}
{% trans 'Balance' %} {{ invoice.balance|format_currency }}
{% endif %}
{% endwith %}
|
{% endfor %}
{% else %}
{% trans 'Not a member.' %}
{% endif %}
{% endif %}
{% include "profiles/include/list_user_chapter_memberships.html" %}
{% if corps_list %}
{% trans "Representative of" %}
{% for id, name in corps_list %}
- {{ name }}
{% endfor %}
{% endif %}
{% if memberships and memberships.0.chapter %}
{% trans 'Chapter' %}
{{ memberships.0.chapter }}
{% endif %}
{% if directories %}
{% if request.user.is_superuser or request.user == profile.user %}
{% firstof MODULE_DIRECTORIES_LABEL_PLURAL trans "Directories" %}
{% endif %}
{% endif %}
{% trans "Upcoming Event Registrations" %}
{% if registrations %}
{% for reg in registrations %}
{% with reg.reg8n_status as reg8n_status %}
|
{% trans "Registration" %} #{{ reg.registration.pk }}
|
{{ reg8n_status }}
{% if reg.event.has_child_events and reg.user %}
{% if reg8n_status != "cancelled" and reg8n_status != "payment-required" %}
{% endif %}
{% endif %}
{% if reg8n_status == "payment-required" %}
{% with reg.invoice as invoice %}
{% endwith %}
{% endif %}
|
{% if reg.event.can_cancel and reg8n_status != "cancelled" %}
{% trans "Cancel" %}
{% endif %}
|
{{ reg.registration.event.title }}
|
{{ reg.registration.event.start_dt|date:"DATE_FORMAT" }} - {{ reg.registration.event.end_dt|date:"DATE_FORMAT" }}
|
{% endwith %}
{% endfor %}
{% else %}
{% trans "No upcoming event registrations." %}
{% endif %}
{% if request.user.is_superuser and upcoming_events %}
{% endif %}
{% elif can_view_memberships and memberships %}
{% trans 'Memberships' %}
{% for membership in memberships %}
|
{{ membership.membership_type }}
|
{{ membership.join_dt|date:"DATE_FORMAT" }}
{% if not membership.is_pending %} - {% firstof membership.expire_dt|date:"DATE_FORMAT" "Forever" %}
+ (grace period:
{{ membership.membership_type.expiration_grace_period }} days)
{% endif %}
{{ membership.get_status|capfirst}}
|
|
{% endfor %}
{% endif %}
{% if recurring_payments %}
{% if request.user.is_superuser or request.user == profile.user %}
{% trans "Recurring Payments" %}
{% for rp in recurring_payments %}
{% endfor %}
{% endif %}
{% endif %}
{% if MODULE_ACTIVITIES_ENABLED %}
{% with user_this.activities.all as user_activities %}
{{ MODULE_ACTIVITIES_LABEL }}
| {% trans "Start Date" %} |
{% trans "End Date" %} |
{% trans "Activity" %} |
{% for activity in user_activities %}
| {% if activity.start_date %}{{ activity.start_date|date:"SHORT_DATE_FORMAT" }}{% endif %} |
{% if activity.end_date %}{{ activity.end_date|date:"SHORT_DATE_FORMAT" }}{% endif %} |
{{ activity.activity_name }} |
{% endfor %}
{% endwith %}
{% endif %}
{% latest_contributions user_this as contributions %}
{% if contributions %}
{% trans "Contributions" %}
{% else %}
{% if user.profile.is_superuser %}
{% firstof request.user.first_name request.user.username %}, {% trans 'this person has not made any contributions yet.' %}
{% endif %}
{% endif %}
{% if can_edit %}
{% profile_meta %}
{% endif %}