{m.doc_section_details()}
{doc.documentDate ? formatDate(doc.documentDate) : '—'}
{m.doc_label_document_date()}
{doc.location ? doc.location : '—'}
{m.doc_label_creation_location()}
{#if doc.documentLocation}
{doc.documentLocation}
{m.doc_label_archive_location_original()}
{/if} {#if doc.tags && doc.tags.length > 0}
{#each doc.tags as tag (tag.id)}
{tag.name}
{/each}
{m.form_label_tags()}
{/if}
{m.doc_section_persons()}
{m.form_label_sender()}
{#if doc.sender}
{doc.sender.firstName[0]}{doc.sender.lastName[0]}
{doc.sender.firstName} {doc.sender.lastName}
{#if doc.sender.alias}
{doc.sender.alias}
{/if}
{:else}
{m.doc_sender_not_specified()}
{/if}
{m.form_label_receivers()}
{#if doc.receivers && doc.receivers.length > 0}
{#each doc.receivers as receiver (receiver.id)}
{receiver.firstName[0]}{receiver.lastName[0]}
{receiver.firstName} {receiver.lastName}
{#if doc.sender}
{/if}
{/each}
{:else}
{m.doc_no_receivers()}
{/if}