{% extends 'admin/inspect.html' %} {% load i18n admin_urls simpelcore_tags %} {% block content %}
{{ object.group|title }}
{{ object.inner_id }}
Progress: {{ object.progress|point }}
{% trans "Status" %}
: {{ object.get_status_display }}
{% trans "Created at" %}
: {{ object.created_at|date:"d M Y" }}
{% include 'admin/simpel_partners/partner_info_block.html' with partner=object.customer %}
{% if object.note %}
{% trans "Note" %}
{{ object.note }}
{% endif %}
{% for item in object.items.all %} {% include 'admin/simpel_projects/task_item.html' with object=item %} {% endfor %}
{% include 'notices/object_action_logs.html' %}
{% endblock %}