{% blocktrans %}The following company has applied for corporate membership on {{ SITE_GLOBAL_SITEDISPLAYNAME }}:{% endblocktrans %}
{% trans "Company:" %} |
{{ object.corp_profile.name }} |
{% trans "Address:" %} |
{{ object.corp_profile.address }} {{ object.corp_profile.address2 }} |
{% trans "City/State/ZIP:" %} |
{{ object.corp_profile.city }} {{ object.corp_profile.state }} {{ object.corp_profile.zip }} |
{% trans "Phone:" %} |
{{ object.corp_profile.phone }} |
{% trans "This form was submitted by:" %}
{% trans "Name:" %} |
{% if creator %}
{{ creator.first_name }} {{ creator.last_name }}
{% else %}
{{ request.user.get_full_name }}
{% endif %}
|
{% trans "Title:" %} |
{{ profile.position_title }} |
{% trans "Phone:" %} |
{{ profile.phone }} |
{% trans "Fax:" %} |
{{ profile.fax }} |
{% trans "Email:" %} |
{% if creator %}
{{ creator.email }}
{% else %}
{{ profile.email }}
{% endif %}
|
{% trans "To view the complete application, go to:" %}
{{ SITE_GLOBAL_SITEURL }}{% url corpmembership.view object.pk %}
{% if object.status_detail == 'pending' and object.payment_method != 'cc' %}
{% trans "To approve the application, go to:" %}
{{ SITE_GLOBAL_SITEURL }}{% url corpmembership.approve object.pk %}
{% endif %}
{% if not creator %}
{% trans "For more on the person who submitted the application, go to:" %} {{ SITE_GLOBAL_SITEURL }}{{ profile.get_absolute_url }}
{% endif %}
{% trans "If you have received this in error, please contact the webmaster below." %}
{% trans "Thanks!" %}
{{ SITE_GLOBAL_SITECONTACTNAME }}
{{ SITE_GLOBAL_SITECONTACTEMAIL }}
{{ SITE_GLOBAL_SITEDISPLAYNAME }}
{% trans "Time submitted:" %} {% now "D d M Y P" %} |