{% extends "base.html" %} {% block title %}خطط الاشتراك{% endblock %} {% block content %}

خطط الاشتراك

اختر الخطة المناسبة لاحتياجاتك

{% for plan in plans %}

{{ plan.display_name or plan.name|title }}

{{ plan.price }} {{ plan.currency }}/شهر
  • {{ plan.reports_per_month if plan.reports_per_month != -1 else '∞' }} تقارير شهرياً
  • {% if plan.name == 'pro' or plan.name == 'enterprise' %}
  • أدوات سريعة
  • دورات احترافية
  • التذاكر والدعم الفني
  • السوق والمشاريع
  • مجتمع المشاريع
  • المنح
  • {% endif %}
{% if plan.name == 'free' %}الخطة الحالية{% else %}اشترك الآن{% endif %}
{% endfor %}
{% endblock %}