{# templates/organization_plans/plan_list.html #} {% extends "template_base.html" %} {% load static %} {% block js %} {# planDialog is in WeVoteServer/apis_v1/static/js/planDialog.js #} {% endblock %} {% block title %}Coupons{% endblock %} {% block content %}

Coupons/Paid Subscription Plans for an Endorser




    Display only the latest version of each Coupon


{% if plans %} {% for plan in plans %} {% endfor %}
id Coupon Code Plan Type Plan Comment Coupon Applied Message Monthly Price Annual Price Redeemed Features Created Expires Archived
{{ plan.coupon_code }} {{ plan.premium_plan_type_enum }} {{ plan.hidden_plan_comment }} {{ plan.coupon_applied_message }} {{ plan.monthly_price_stripe }} {{ plan.annual_price_stripe }} {{ plan.redemptions }} {{ plan.features_provided_bitmap }} {{ plan.plan_created_at }} {{ plan.coupon_expires_date }} {% if plan.is_archived %}{{ plan.is_archived }}{% endif %}
{% else %} You must have deleted all the plans, including the defaults. {% endif %}






















{% endblock %}