30 lines
801 B
Plaintext
30 lines
801 B
Plaintext
{% load i18n %}{% autoescape off %}
|
|
Hi {% firstof user.get_full_name user.username %},
|
|
|
|
Your account will expire in {{ days }} days.
|
|
|
|
You can extend your current plan {{ userplan.plan.name }} on page:
|
|
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
|
|
----------------
|
|
مرحباً {% firstof full_name username %}،
|
|
|
|
سينتهي حسابك في غضون {{ days }} يوم.
|
|
|
|
يمكنك تمديد خطتك الحالية {{ userplan.plan.name }} على الصفحة التالية:
|
|
http://{{ site_domain }}{% url 'current_plan' %}
|
|
|
|
أو يمكنك ترقية خطتك هنا:
|
|
http://{{ site_domain }}{% url 'upgrade_plan' %}
|
|
|
|
شكراً لك
|
|
--
|
|
فريق تنحل
|
|
{% endautoescape %}
|