{% extends "layouts/base.html" %}
{% load i18n %}
{% block title %}{% trans "My Tasks" %} - PX360{% endblock %}
{% block content %}
{% trans "All pending items assigned to you across the system" %}{% trans "My Tasks" %}
{% trans "Pending" %}
{{ pending }}
{% trans "Overdue" %}
{{ overdue }}
{{ task.title }}
{% if task.description %}{{ task.description }}
{% endif %} {% if task.due_date %}{{ task.due_date|date:"M d, Y" }} {% if task.is_overdue %} — {% trans "Overdue" %}{% endif %}
{% endif %}{% trans "You're all caught up!" %}
{% trans "No pending tasks assigned to you." %}