{% extends "layouts/base.html" %} {% load i18n %} {% block title %}{% trans "Acknowledgement Checklist" %}{% endblock %} {% block content %}
{% trans "Progress" %}
{{ progress_percentage }}%
{% trans "Completed" %}: {{ acknowledged_count }} / {{ total_count }}

{% trans "Acknowledgement Checklist" %}

{% trans "Please review and acknowledge all required items below. Your digital signature will be recorded for compliance purposes." %}
{% for item in checklist_items %}
{% if item.description_en %}

{% if request.user.language == 'ar' %}{{ item.description_ar }}{% else %}{{ item.description_en }}{% endif %}

{% endif %} {% if item.content %}

{% if request.user.language == 'ar' %}{{ item.content.title_ar }}{% else %}{{ item.content.title_en }}{% endif %}

{% endif %}
{% if item.is_acknowledged %} {% endif %}
{% endfor %}
{% endblock %}