{#if isLoading}

Cargando ticket...

{:else if ticket}
Tickets / #{ticket.ticket_number || ticket.id.substring(0, 8)}

{ticket.subject || ticket.title}

{getStatusBadge(ticket.status).label} {getPriorityBadge(ticket.priority).label} Creado {formatDate(ticket.created_at)}

{ticket.description}

{#if attachments && attachments.length > 0}

Archivos Adjuntos ({attachments.length})

{#each attachments as attachment}
ADJ

{attachment.original_filename}

{Math.round(attachment.size_bytes / 1024)} KB {#if attachment.uploaded_by_name} • Subido por {attachment.uploaded_by_name} {/if} {#if attachment.uploaded_at} • {formatDate(attachment.uploaded_at)} {/if}

{/each}
{/if}

Conversación

{#if comments.length === 0}

No hay comentarios aún. ¡Sé el primero en comentar!

{:else}
{#each comments as comment}
{comment.author_name ? comment.author_name .split(' ') .map(n => n[0]) .join('') : 'U'}
{comment.author_name || 'Usuario Desconocido'} {formatDate(comment.created_at)} {#if comment.is_internal} Interno {/if}

{comment.content}

{/each}
{/if}