{% 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 'Task' %} | {% trans 'Description' %} | {% trans 'Time frame' %} | {% trans 'Status' %} | {% if can_change_project %} {% endif %} | {% for issue in issues %}
---|---|---|---|---|
{{ issue.task.title }} | {{ issue.task.text|markdown }} |
{% for dates in issue.dates %}
{% if dates|length > 1 %}
{{ dates.0 | date:"DATE_FORMAT" }} {{ dates.0 | date:"DATE_FORMAT" }} {% endif %} {% endfor %} |
{{ issue.get_status_display }} | {% if settings.PROJECT_SEND_ISSUE %} {% endif %} |
{% trans 'No active tasks found.' %}
{% else %}{% trans 'No tasks are configured for this project.' %}
{% endif %} {% endif %}