27 lines
784 B
Plaintext
27 lines
784 B
Plaintext
{% load i18n %}{% autoescape off %}
|
|
مرحباً {% firstof user.get_full_name user.username %}،
|
|
|
|
لقد انتهت صلاحية حسابك للتو.
|
|
|
|
يمكنك استعادة خطتك الحالية {{ userplan.plan.name }} من هنا:
|
|
http://{{ site_domain }}{% url 'current_plan' %}
|
|
أو يمكنك ترقية خطتك من هنا:
|
|
http://{{ site_domain }}{% url 'upgrade_plan' %}
|
|
|
|
شكراً لك،
|
|
--
|
|
فريق تنحل
|
|
---------------------
|
|
Hi {% firstof user.get_full_name user.username %},
|
|
|
|
Your account has just expired.
|
|
|
|
You can restore your current plan {{ userplan.plan.name }} here:
|
|
http://{{ site_domain }}{% url 'current_plan' %}
|
|
or you can upgrade your plan here:
|
|
http://{{ site_domain }}{% url 'upgrade_plan' %}
|
|
|
|
Thank you,
|
|
--
|
|
The Team at TENHAL
|
|
{% endautoescape %} |