2022-11-10 08:51:28 +00:00
|
|
|
<report-body v-bind="$props">
|
|
|
|
<div class="grid-row">
|
|
|
|
<div class="grid-block vn-pa-ml">
|
|
|
|
<h1>{{ $t('title') }}</h1>
|
|
|
|
<p>{{$t('description.dear')}},</p>
|
|
|
|
<div v-html="$t('description.instructions')"></div>
|
|
|
|
<p>{{$t('description.conclusion')}}</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="grid-row" v-if="isPreview">
|
|
|
|
<div class="grid-block vn-pa-ml">
|
|
|
|
<attachment v-for="attachment in attachments" v-bind:key="attachment.filename"
|
|
|
|
v-bind:attachment="attachment" v-bind:args="$props">
|
|
|
|
</attachment>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</report-body>
|