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

{% trans "Acknowledgement Checklist" %}

{% trans "Please review and acknowledge the following items" %}

{{ acknowledged_count }} {% trans "of" %} {{ total_count }} {% trans "completed" %} {{ progress_percentage }}%
{% regroup checklist_items by category as category_groups %}
{% for category, items in category_groups %}

{{ category.get_localized_name }} ({{ items|length }})

{% for item in items %}
{% if item.is_acknowledged %}
{% else %}
{% endif %}
{{ item.get_localized_text }}
{% if item.is_required %} {% trans "Required" %} {% endif %} {{ item.code }}
{% if item.get_localized_description %}

{{ item.get_localized_description }}

{% endif %}
{% endfor %}
{% empty %}

{% trans "No checklist items found." %}

{% endfor %}
{% trans "Continue to Account Setup" %}

{% trans "Important" %}

{% trans "Click on each item to acknowledge it with your signature. Required items must be acknowledged before you can activate your account." %}

{% endblock %}