{% extends "corporate_memberships/base.html" %} {% load corporate_memberships_tags %} {% load perm_tags %} {% load i18n %} {% block title %}{% trans "Corporate Membership Renewal Confirmation" %}{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block body %}
{% blocktrans with corporate_membership.name as member %}Thanks for renewing corporate membership "{{ member }}"!{% endblocktrans %}
{% blocktrans with renew_entry.status_detail as status %}The status of the renewal: {{ status }}{% endblocktrans %}
{% if not request.user.is_superuser %}
{% if renew_entry.status_detail == "pending" or renew_entry.status_detail == "paid - pending approval" %}
{% trans "Your membership renewal will be reviewed by an administrator who will be contacting you shortly." %}
{% endif %}
{% endif %}
{% trans "View this Corporate Membership" %}
{% endif %} {% if can_edit %} {% endif %}