{% endmacro %}
{% macro CareerPreference(member) %}
{% if member.preferred_functions or member.preferred_industries or member.preferred_location or member.dream_companies %}
{{ _("Career Preference") }}
{% if member.preferred_functions | length %}
{{ _("Preferred Functions:") }}
{% for function in member.preferred_functions %}
{{ function.function }}
{% endfor %}
{% endif %}
{% if member.preferred_industries | length %}
{{ _("Preferred Industries:") }}
{% for industry in member.preferred_industries %}
{{ industry.industry }}
{% endfor %}
{% endif %}
{% if member.preferred_location %}
{{ _("Preferred Locations:") }}
{{ member.preferred_location }}
{% endif %}
{% if member.dream_companies %}
{{ _("Dream Companies:") }}
{{ member.dream_companies }}
{% endif %}
{% endif %}
{% endmacro %}
{% macro Contact(member) %}
{% if member.linkedin or member.medium or member.github %}