{% load perm_tags %} {% trans 'Corporate Membership Renewed' %} {% with request.user.profile as profile %}
 

{% blocktrans %}The following company has renewed for corporate membership on {{ SITE_GLOBAL_SITEDISPLAYNAME }}:{% endblocktrans %}

{% trans "Company:" %} {{ corp_profile.name }}
{% trans "Address:" %} {{ corp_profile.address }}
{% trans "City/State/ZIP:" %} {{ corp_profile.city }} {{ corp_profile.state }} {{ corp_profile.zip }}
{% trans "Phone:" %} {{ 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 %} {% if object.status_detail == 'pending' and object.payment_method != 'cc' %}

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

{% endif %}

{% blocktrans %}For more on the person who submitted the application, go to:{% endblocktrans %} {{ 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 %}