{% load i18n %} {% load rules %} {% load core_tags %} {% has_perm 'projects.change_project_object' request.user project as can_change_project %} {% if settings.PROJECT_ISSUES and tasks_available %}

{% trans 'Tasks' %}

{% include 'projects/project_detail_issues_help.html' %} {% if issues %} {% for issue in issues %} {% endfor %}
{% trans 'Task' %} {% trans 'Description' %} {% trans 'Time frame' %} {% trans 'Status' %} {% if can_change_project %} {% endif %}
{{ issue.task.title }} {{ issue.task.text|markdown }} {% for dates in issue.dates %} {% if dates|length > 1 %}

{{ dates.0 | date:"DATE_FORMAT" }}
- {{ dates.1 | date:"DATE_FORMAT" }}

{% else %}

{{ dates.0 | date:"DATE_FORMAT" }}

{% endif %} {% endfor %}
{{ issue.get_status_display }} {% if settings.PROJECT_SEND_ISSUE %} {% endif %}
{% else %} {% if can_change_project %}

{% endif %} {% if project.tasks.exists %}

{% trans 'No active tasks found.' %}

{% else %}

{% trans 'No tasks are configured for this project.' %}

{% endif %} {% endif %}
{% endif %}