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

{{ item.title }}

{% if item.item_type == 'bug' %} Bug {% else %} Feature {% endif %} {% if item.status == 'resolved' %} Resolved {% else %} Open {% endif %} {% if item.deleted_at %} Deleted {% endif %} by {{ created_by_name }}
Back
{% if item.component %}
Component: {{ item.component }}
{% endif %}
{{ item.description }}
{% if item_attachments %}
Screenshots:
{% for att in item_attachments %} {{ att.filename }} {% endfor %}
{% endif %}
Replies
{% if replies %}
{% for r in replies %}
{{ reply_user_map.get(r.user_id, '') or ('User #' ~ r.user_id) }} {{ r.created_at|local_datetime('%d-%m-%Y %H:%M:%S') if r.created_at else '' }}
{{ r.message }}
{% if r.id in reply_attachments_map %}
{% for att in reply_attachments_map[r.id] %} {{ att.filename }} {% endfor %}
{% endif %}
{% endfor %}
{% else %}
No replies yet.
{% endif %}
Add reply
{% if item.status == 'open' %}
You can attach multiple screenshots (PNG, JPG, GIF, WEBP, max 5MB each)
{% else %}
Replies can only be added while the item is open.
{% endif %}

Actions

{% if active_role == 'admin' %} {% if item.deleted_at %} {# Item is deleted - show permanent delete option #}
This item is deleted.
{% else %} {# Item is not deleted - show normal actions #} {% if item.status == 'resolved' %}
{% else %}
{% endif %}
{% endif %} {% else %}
Only administrators can resolve or delete items.
{% endif %}
{% endblock %}