{% 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 }}
{% trans "Expiration Date" %}: {{ corp_membership.expiration_dt }} {% 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 %}
{{ 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 %}
  {% 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 }}
{% trans "Total" %}
{{ SITE_GLOBAL_CURRENCYSYMBOL }} {{ summary_data.total_amount }}
{% endblock %} {% block extra_body %} {{ block.super }} {% endblock %}