{# Profile Completion Checklist Card - for Settings page #} {# Shows detailed checklist of all profile completion items #} {% set completion = profile_completion(app.user) %}

{% if app.request.locale == 'ar' %} اكتمال الملف الشخصي {% else %} Profile Completion {% endif %}

{{ completion.percentage }}% {{ app.request.locale == 'ar' ? completion.tier.label_ar : completion.tier.label_en }}
{% if completion.percentage >= 100 %}
{% if app.request.locale == 'ar' %} 🌟 تهانينا! ملفك الشخصي مكتمل {% else %} 🌟 Congratulations! Your profile is complete {% endif %}
{% else %} {% if completion.next_action %}
{% if app.request.locale == 'ar' %} نصيحة: أضف {{ completion.next_action.label_ar }} لرفع نسبة الاكتمال بـ {{ completion.next_action.weight }}% {% else %} Tip: Add {{ completion.next_action.label_en }} to increase completion by {{ completion.next_action.weight }}% {% endif %}
{% endif %} {% endif %}