{% extends "base.html" %} {%block page_title %} {{ title }} {% endblock %} {%block content %}

Description

top {% if entity.description -%} {{ description | safe}}
{% else %} No description
{%- endif %}

Attributes

top
{% for k in ('status', 'estimate', 'milestone', 'owner') %} {% if k in entity %}
{{k.title()}}
{{project[entity[k]].html_summarized_view | safe}}
{% endif %} {% endfor %} {% if entity.get('components') %}
Components
    {% for cmp in entity['components'] %}
  • {{project[cmp].html_summarized_view | safe}}
  • {% endfor %}
{% endif %} {% for attr, val in entity.items() %} {% if attr not in ('uuid', 'description', 'attached_files', 'title', 'frag', 'status', 'estimate', 'milestone', 'components', 'owner', 'type', 'comments') %}
{{attr}}
{% if isinstance(val, UUID) %}
{{project[val].html_summarized_view | safe}}
{% elif isinstance(val, datetime) %}
{{ val.strftime("%a, %b %d, %Y %I:%M %P") }}
{% else %}
{{val}}
{% endif %} {% endif %} {% endfor %}
{% if entity.get('attached_files') %}
top

Attached Files

{% endif %} {% endblock %}