{% extends "dashboard-main.html" %} {% load static %} {% block content %}

Projects Dashboard

{% for point in points %} {% empty %} {% endfor %}
Project Task Point Status Assigned To Time Spent Last Activity
{{ point.task.project.name }} {{ point.task.name }} {{ point.text|truncatechars:30 }} {{ point.status }} {{ point.task.assigned_to.user.first_name }} {{ point.task.assigned_to.user.last_name }} {% with point.total_activity_time as time %} {{ time.0 }}h {{ time.1 }}m {% endwith %} {% with point.pointactivity_set.last as last_activity %} {% if last_activity %} {{ last_activity.end_time|date:"j F H:i" }} {% else %} - {% endif %} {% endwith %}
No points found with the current filters
{% if points.has_previous %} {% endif %} {% for num in page_range %}

{{ num }}

{% endfor %} {% if points.has_next %} {% endif %}
{% endblock content %}