{% load i18n %} {% load perm_tags %} {% trans "Corporate Membership Edited" %} {% with request.user.get_profile as profile %}
 

{% blocktrans %}The following corporate membership has been edited on {{ SITE_GLOBAL_SITEDISPLAYNAME }}:{% endblocktrans %}

{% trans "Company:" %} {{ object.corp_profile.name }}
{% trans "Address:" %} {{ object.corp_profile.address }}
{% 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:" %} {{ request.user.get_full_name }}
{% trans "Title:" %} {{ profile.position_title }}
{% trans "Phone:" %} {{ profile.phone }}
{% trans "Fax:" %} {{ profile.fax }}
{% trans "Email:" %} {{ profile.email }}


{% blocktrans %}To view the complete application, go to:{% endblocktrans %} {{ SITE_GLOBAL_SITEURL }}{% url corpmembership.view object.pk %}

{% trans "For more on the person who submitted the application, go to:" %} {{ SITE_GLOBAL_SITEURL }}{{ profile.get_absolute_url }}

{% 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" %}

 
{% endwith %}