{% extends 'manager/base.html' %} {% load static %} {% load i18n %} {% block sidebar.payment_plans %} class="active" {% endblock %} {% block content %}

{% trans "طرح‌های پرداخت" %}

{% if messages %} {% for message in messages %} {% endfor %} {% endif %}

{% trans "لیست طرح‌های پرداخت" %}

{% if plans %}
{% for plan in plans %} {% endfor %}
{% trans "نام طرح" %} {% trans "شناسه دیتابیس" %} {% trans "قیمت" %} {% trans "قیمت با تخفیف" %} {% trans "دوره اشتراک" %} {% trans "وضعیت" %} {% trans "موارد شامل" %} {% trans "موارد مستثنی" %} {% trans "عملیات" %}
{{ plan.name }} {% if plan.promotion %}
{{ plan.promotion }} {% endif %}
{{ plan.plan_database_id }} {{ plan.price }} {% trans "تومان" %} {% if plan.price_with_promotion %} {{ plan.price_with_promotion }} {% trans "تومان" %} {% else %} - {% endif %} {{ plan.subscription_period }} {% if plan.is_active %} {% trans "فعال" %} {% else %} {% trans "غیرفعال" %} {% endif %} {% if plan.items_included %}
    {% for item in plan.get_items_included_list %}
  • {{ item }}
  • {% endfor %}
{% else %} - {% endif %}
{% if plan.items_excluded %}
    {% for item in plan.get_items_excluded_list %}
  • {{ item }}
  • {% endfor %}
{% else %} - {% endif %}
{% else %}
{% trans "هیچ طرح پرداختی یافت نشد" %}

{% trans "برای شروع، اولین طرح پرداخت را ایجاد کنید." %}

{% trans "افزودن طرح جدید" %}
{% endif %}
{% endblock %} {% block footer %} {% endblock %}