{% extends "base.html" %} {% load threebot_tags %} {% load sekizai_tags %} {% block doctitle %} all Tasks {% endblock %} {% block content %}

Tasks Add Task Import Task

Tasks are Scripts. Many Tasks are combined in a Workflow. Select the Task you want to edit.

{% if tasks %}
Filter
{% for task in tasks %} {% endfor %}
Readonly Built-In Team
{% if not task.is_builtin and not task.is_readonly %} {{ task.title }} {% elif not task.is_builtin and task.is_readonly and task.owner|can_be_administarated_by:request.user %} {{ task.title }} {% else %} {{ task.title }} {%endif%} {% if task.is_readonly %} {% else %} {% endif %} {% if task.is_builtin %} {% else %} {% endif %} {{ task.owner }}
{% else %} Add Task {% endif %} {% addtoblock "js" %} {% endaddtoblock %} {% endblock %}