{% extends "corporate_memberships/base-wide.html" %} {% load corporate_memberships_tags %} {% load styled_forms %} {% block title %}{% trans "Corporate Membership Renewal" %}{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block content %}

{% trans "Corporate Membership Renewal" %}

{% csrf_token %}

{{ corp_profile.name }}
{% if corp_profile.address %} {{ corp_profile.address }} {% if corp_profile.address2 %} {{ corp_profile.address2 }} {% endif %}
{% endif %} {% if corp_profile.city or corp_profile.state or corp_profile.zip %} {% if corp_profile.city %} {{ corp_profile.city }} {% endif %} {% if corp_profile.state %} {{ corp_profile.state }} {% endif %} {% if corp_profile.zip %} {{ corp_profile.zip }} {% endif %}
{% endif %} {% if corp_profile.phone %} {{ corp_profile.phone }}
{% endif %} {% if corp_profile.email %} {{ corp_profile.email }}
{% endif %} {% trans "Join Date:" %} {{ corp_membership.join_dt|date }}
{% trans "Expiration Date" %}: {{ corp_membership.expiration_dt|date }} {% if corp_membership.is_expired %} {% if corp_membership.is_in_grace_period %} {% trans "(in grace period)" %} {% else %} {% trans "(expired)" %} {% endif %} {% endif %}

 
{% if form.errors %}

{% trans "There were some problems in the form. Please review. Thanks!" %}

{% endif %} {% if form.errors.values %} {% endif %}
{{ form.corporate_membership_type.label_tag }}
{% if form.corporate_membership_type.errors %} {% endif %}
{{ form.corporate_membership_type }}
{% if form.corporate_membership_type.help_text %}
{{ form.corporate_membership_type.help_text }}
{% endif %}
{% if 'donation_option_value' in form.fields %}
{{ form.donation_option_value.label_tag }}
{% if form.donation_option_value.errors %} {% endif %}
{{ form.donation_option_value }}
{% if form.donation_option_value.help_text %}
{{ form.donation_option_value.help_text }}
{% endif %} {% if 'donate_to_entity' in form.fields %}
  • {{ form.donate_to_entity.label_tag }} {{ form.donate_to_entity }} {% if form.donate_to_entity.errors %} {% endif %}
{% endif %}
{% endif %}
{{ form.members.label_tag }}
{% if form.members.errors %} {% endif %}
{{ form.members }}
{% if form.members.help_text %}
{{ form.members.help_text }}
{% endif %}
{{ form.payment_method.label_tag }}
{% if form.payment_method.errors %} {% endif %}
{{ form.payment_method }}
{% if form.payment_method.help_text %}
{{ form.payment_method.help_text }}
{% endif %}
{% if cap_enabled %} {% endif %} {% if 'donation_option_value' in form.fields %} {% endif %}
  {% trans "Qty" %} {% trans "Unit Price" %} {% trans "Sub-total" %}
{% trans "Corporate" %} 1 {{ SITE_GLOBAL_CURRENCYSYMBOL }}{{ summary_data.corp_price }} {{ SITE_GLOBAL_CURRENCYSYMBOL }}{{ summary_data.corp_price }}
{% trans "Individuals" %} {{ summary_data.individual_count }} {{ SITE_GLOBAL_CURRENCYSYMBOL }}{{ summary_data.individual_price }} {{ SITE_GLOBAL_CURRENCYSYMBOL }}{{ summary_data.individual_total }}
{% trans "Individuals (above cap)" %} {{ summary_data.above_cap_individual_count }} {{ SITE_GLOBAL_CURRENCYSYMBOL }}{{ summary_data.above_cap_price }} {{ SITE_GLOBAL_CURRENCYSYMBOL }}{{ summary_data.above_cap_individual_total }}
{{ form.donation_option_value.label }}     {{ SITE_GLOBAL_CURRENCYSYMBOL }}{{ summary_data.donation_amount }}
{% if tax_rate_display %} {% endif %} {% if payment_credits > 0 %} {% endif %}
{% trans "Total" %}
{{ SITE_GLOBAL_CURRENCYSYMBOL }} {{ summary_data.total_amount }}
** {{ tax_rate_display }} {% trans 'will be applied' %}
** {{ SITE_GLOBAL_CURRENCYSYMBOL }}{{ payment_credits }} {% trans 'payment credits will be applied' %}
{% endblock %} {% block extra_body %} {{ block.super }} {% endblock %}