{% extends "base.html" %} {% block content %}

{% include "widgets/categoryicon.html" with category=item.primary_category %} {{ item.name }} {{ item.pk }}

Details

{% if item.owner %} {% endif %} {% if item.taken_by %} {% endif %} {% if item.taken_on %} {% endif %} {% if item.taken_until %} {% endif %}
owner{{ item.owner }}
state{{ item.state }}
taken by{{ item.taken_by }}
taken on{{ item.taken_on }}
taken until{{ item.taken_until }}

Properties

{% for k, v in item.props.items %} {% empty %} {% endfor %}
key value
{{ k }}{{ v|urlize }}
No properties
{% if categories %}

Categories

{% for category in categories %} {% endfor %}
{% include "widgets/categoryicon.html" with category=category %} {{ category.name }}
{% endif %} {% if images %}

Photos

{% for image in images %} {% endfor %}
{% endif %} {% if labels %}

Labels

{% for label in labels %}
{% csrf_token %}
{{ label.id }}
{% endfor %} {% endif %} {% if history %}

Changes

{% for entry in history %} {% endfor %}
{{ entry.user }} @ {{ entry.action_time }}
{{ entry.get_change_message }}
{% endif %}
{% if item.description %} {% load md2 %} {{ item.description|markdown:"code-color" }} {% endif %}

Children

{% include "widgets/itemlist.html" with list=children|dictsort:"name" item=item %}
{% endblock %}