{% extends "base.html" %} {% block title %}{{ _('profile.title') }}{% endblock %} {% block content %}

{{ _('profile.title') }}

{% if not current_user.email_verified %}
! {{ _('profile.email_not_verified') }}
{{ _('profile.resend') }}
{% endif %}

* {{ _('profile.account_info') }}

* {{ _('profile.change_password') }}

* {{ _('profile.2fa') }}

{% if current_user.two_factor_enabled %}
{{ _('profile.2fa_enabled') }} {{ _('profile.2fa_protected') }}
{% else %}

{{ _('profile.2fa_desc') }}

{{ _('profile.enable_2fa') }} {% endif %}

{% if current_user.is_admin %} 🔗 ربط المنصات وإدارة المفاتيح {% else %} 🔗 حسابات التواصل الاجتماعي {% endif %}

{% if current_user.is_admin %} إدارة حسابات التواصل الاجتماعي ومفاتيح API للخدمات الخارجية. المفاتيح مشفّرة ومحفوظة بأمان. {% else %} اربط حسابات التواصل الاجتماعي الخاصة بك لتفعيل النشر التلقائي والحملات التسويقية. {% endif %}

{% for key, info in platform_registry.items() %} {% set existing = user_keys.get(key) %}
{{ info.icon }} {{ info.name_ar }}
{% if existing %} متصل {% else %} غير متصل {% endif %}
{% for field in info.fields %}
{% endfor %}
{% if existing %} {% endif %} {% if info.help_url %} مساعدة ↗ {% endif %}
{% endfor %}

* {{ _('profile.subscription_info') }}

{{ _('profile.current_plan') }}
{{ current_user.active_plan.display_name if current_user.active_plan else _('profile.free') }}
{{ _('profile.reports_this_month') }}
{{ current_user.reports_this_month }}
{{ _('profile.created_at') }}
{{ current_user.created_at.strftime('%Y-%m-%d') }}
{% endblock %}