{% extends "layout.html" %} {% import 'macros.html' as macros %} {% block title %}Task details - TWWeb{% endblock %} {% block content %}
Annotations | {% if task.annotations %}
|
{% else %}
- | {% endif %}
Tags | {% if task.tags %}{% for tag in task.tags %}{{tag}}{% if not loop.last %}, {% endif %}{% endfor %} | {% else %}- | {% endif %}
Depends on | {% if task.depends %}{% for dep in task.depends %}{{ dep }}{% if not loop.last %}, {% endif %}{% endfor %} | {% else %}- | {% endif %}