{% extends "layouts/base.html" %} {% load i18n %} {% block title %}{% trans "My Acknowledgements" %} - PX360{% endblock %} {% block content %}

{% trans "My Acknowledgements" %}

{% trans "Review and sign required documents" %}

{% if user.is_px_admin or user.is_staff %} {% trans "Create New" %} {% trans "Manage" %} {% endif %}
{{ signed }} {% trans "Signed" %}
{% if pending > 0 %}
{{ pending }} {% trans "Pending" %}
{% endif %}
{% if pending > 0 %}

{% trans "Action Required" %}

{% blocktrans %} You have {{ pending }} acknowledgement(s) waiting for your signature. Please review and sign them below. {% endblocktrans %}

{% endif %}
{% trans "Completion Progress" %} {{ progress }}%
{% if pending_acks %}
{% trans "Pending Signatures" %} {{ pending_acks|length }}
{% for item in pending_acks %}
{{ item.acknowledgement.title }}
{% if item.acknowledgement.description %}

{{ item.acknowledgement.description|truncatewords:20 }}

{% endif %}
{% if item.sent_at %} {% trans "Sent" %} {{ item.sent_at|date:"M d, Y" }} {% endif %} {% if item.acknowledgement.is_required %} {% trans "Required" %} {% endif %}
{% if item.acknowledgement.pdf_document %} {% trans "View PDF" %} {% endif %} {% trans "Sign Now" %}
{% endfor %}
{% endif %} {% if signed_acks %}
{% trans "Completed" %} {{ signed_acks|length }}
{% for item in signed_acks %}
{{ item.acknowledgement.title }}
{% if item.acknowledgement.description %}

{{ item.acknowledgement.description|truncatewords:20 }}

{% endif %}
{% trans "Signed on" %} {{ item.signed_at|date:"M d, Y" }} {% if item.signature_name %} • {{ item.signature_name }} {% endif %}
{% if item.has_pdf %} {% trans "Download" %} {% endif %}
{% endfor %}
{% endif %} {% if not pending_acks and not signed_acks %}

{% trans "No acknowledgements available at this time." %}

{% trans "You will be notified when new acknowledgements are assigned to you." %}

{% endif %}
{% endblock %}