{% extends 'cmdbase/base.html' %} {% load i18n static %} {% block title %}{{ object }}{% endblock %} {% block content %}

{{ object }}


At
{{ object.at }}
By
{{ object.by }}
Origin
{{ object.get_origin_display }}
Item count
{{ object.item_count }}
Issue count
{{ object.issue_count }}
Root item
{% if root_reportitem.item %}{{ root_reportitem.item }}{% endif %}
Root action
{{ root_reportitem.get_action_display | default_if_none:'' }}
Root data
{{ root_reportitem.data }}

Created: {{ object.created }} | Updated: {{ object.updated }} | Id: {{ object.id }}


Items

{% for r in reportitem_set %} {% endfor %}
Item Action Path Data
{% if r.item %}{{ r.item }}{% endif %} {{ r.get_action_display | default_if_none:'' }} {% if r.path %}{{ r.path }}{% else %}Root{% endif %} {{ r.data }}

Issues

{% for i in reportissue_set %} {% endfor %}
Issue Path Data
{{ i.display }} {% if i.path %}{{ i.path }}{% else %}Root{% endif %} {{ i.data }}
{% endblock %}