{% extends "base.html" %} {% block title %}TIC #{{ tic.id }}{% endblock %} {% block content %}

TIC #{{ tic.id }}

Status
{{ tic.status }}
Area
{{ tic.area_tag or '?' }}
File
{{ tic.filename or '?' }}
Size
{{ tic.size_bytes or 0 }} bytes
CRC32
{{ tic.crc32 or '?' }}
From
{{ tic.from_address or '?' }}
Origin
{{ tic.origin or '?' }}
Stored at
{{ tic.stored_path or '(not filed)' }}
Received
{{ tic.received_at.strftime('%Y-%m-%d %H:%M:%S') }}
{% if tic.processed_at %}
Processed
{{ tic.processed_at.strftime('%Y-%m-%d %H:%M:%S') }}
{% endif %}
{% if tic.description %}
Description
{{ tic.description }}
{% endif %} {% if tic.error_message %}
Error
{{ tic.error_message }}
{% endif %} {% if path %}
PATH
{% for p in path %}{{ p }}
{% endfor %}
{% endif %} {% if seenby %}
SEEN-BY
{% for s in seenby %}{{ s }}
{% endfor %}
{% endif %}
Raw TIC (click to expand)
{{ tic.raw_content or '' }}
← TIC log
{% endblock %}