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

{% trans "My QI Tasks" %}

{% trans "Total" %}

{{ total }}

{% trans "Pending" %}

{{ pending }}

{% trans "Completed" %}

{{ completed }}

{% if grouped %} {% for project, tasks in grouped.items %}
{{ project.name }} {{ project.get_status_display }}
{% for task in tasks %}
{% csrf_token %}
{{ task.title }} {% if task.description %}

{{ task.description|truncatewords:20 }}

{% endif %}
{% if task.due_date %} {{ task.due_date|date:"M d" }} {% endif %} {{ task.get_status_display }}
{% endfor %}
{% endfor %} {% else %}

{% trans "You have no QI tasks assigned." %}

{% endif %} {% endblock %}