{% extends "layouts/base.html" %} {% load i18n %} {% block title %}{% trans "Acknowledgement Checklist" %}{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

{% trans "Acknowledgement Checklist" %}

{% blocktrans %}{{ acknowledged_count }} of {{ total_count }} items completed{% endblocktrans %}

{{ progress_percentage }}% {% trans "Complete" %}
{% trans "Progress" %}
{% trans "Completed" %} {{ acknowledged_count }}
{% trans "Remaining" %} {{ total_count|add:"-"|add:acknowledged_count }}

{% trans "Complete all required items to proceed" %}
{% trans "Required Acknowledgements" %}
{% 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 %}