{% load i18n %}

{% blocktrans with object.corp_profile.name as objname %}Your corporate membership "{{ objname }}" has been approved.{% endblocktrans %}

{% blocktrans %}To view this corporate membership, go to:{% endblocktrans %} {{ SITE_GLOBAL_SITEURL }}{% url corpmembership.view object.pk %}

{% blocktrans %}To view the invoice, go to:{% endblocktrans %} {{ SITE_GLOBAL_SITEURL }}{% url invoice.view invoice.pk %}

{% blocktrans %}To add individual memberships under your corporate, go to: {% endblocktrans %} {{ SITE_GLOBAL_SITEURL }}{% url membership_default.add_under_corp object.id %}

{% if object.authentication_method == 'secret_code' %}

{% blocktrans %}secret code:{% endblocktrans %}
{{ object.corp_profile.secret_code }}

{% endif %} {% if object.anonymous_creator %}

{% if created %} Your login account:
Username: {{ username }}
Password: {{ password }} {% else %} Your login username: {{ object.creator_username }} {% endif %}
To log into the site, visit {{ SITE_GLOBAL_SITEURL }}{% url auth_login %}

{% endif %}

{% trans "Thanks!" %}

{% trans "Time submitted:" %} {% now "D d M Y P" %}