39 | {{#each messages}}
40 | {{#if this.fromMe}}
41 |
Me
42 | {{else}}
43 |
{{this.from}}
44 | {{/if}}
45 | ({{this.time}}): {{#each this.msg}} {{this}}
{{/each}}
46 | {{#if this.media}}
47 |
Download Attachment
48 | {{/if}}
49 |
{{#if this.showDetails}}
50 | Details
51 |
52 | {{#if this.hasReaction}}
53 | Reactions:
54 | {{#each this.reactionsDetails}}
55 | {{this}}
56 | {{/each}}
57 | {{/if}}
58 | {{#if this.hasQuotedMessage}}
59 | Replies to:
60 | {{this.repliedMessage}}
61 | {{/if}}
62 |
63 | {{/if}}
64 |
65 |
66 | {{/each}}
67 |
76 |
77 |