{% extends "base.html" %} {% from "components/ui.html" import confirm_dialog, page_header %} {% block content %} {% set actions %} {% if current_user.is_admin or task.created_by == current_user.id %}
| Date | Duration | User | Notes | Actions |
|---|---|---|---|---|
| {{ entry.start_time|user_date }} | {{ entry.duration_formatted }} | {{ entry.user.display_name }} | {% if entry.notes %}{{ entry.notes|striptags|truncate(40) }}{% else %}-{% endif %} | |
| No time has been logged for this task. | ||||
{{ task.status_display }}
{{ task.priority_display }}
{{ task.project.name }} {% if task.project.code_display %} {{ task.project.code_display }} {% endif %}
{{ task.assigned_user.display_name }}
{% for tag in task.tag_list %} {{ tag }} {% endfor %}
{{ task.due_date|format_date }}
{% if task.estimated_hours %}{{ task.estimated_hours }} {{ _('h') }}{% else %}—{% endif %}