{% load i18n %}

{% blocktrans with object.name as objname and request.user.get_full_name as requser %}The corporate membership "{{ objname }}" has been renewed by {{ requser }}.{% endblocktrans %}

{% if invoice.balance <= 0 %}

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

{% else %} {% if corp_renew_entry.payment_method == 'cc' or corp_renew_entry.payment_method == 'credit card' %}

{% blocktrans %}To make online credit card payment, go to invoice view page and make online payment from there:{% endblocktrans %} {{ SITE_GLOBAL_SITEURL }}{% url invoice.view invoice.pk %}

{% endif %} {% endif %}

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

{% if corp_renew_entry.status_detail == "pending" %}

{% trans "Note that the dues representative(s) will be notified by email when your corporate membership renewal is approved." %}

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

{% trans "The secret code for individuals to join under your corporate membership:" %}
{{ object.secret_code }}

{% endif %}

{% trans "Thanks!" %}

{{ SITE_GLOBAL_SITEDISPLAYNAME }}

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