salix/print/templates/email/printer-setup/printer-setup.html

61 lines
2.3 KiB
HTML

<!DOCTYPE html>
<html v-bind:lang="locale">
<head>
<title>{{ $t('subject') }}</title>
</head>
<body>
<section class="container">
<!-- Header component -->
<email-header
v-bind:is-preview="isPreview"
v-bind:locale="locale">
</email-header>
<!-- End header component -->
<section class="main">
<!-- Title block -->
<div class="title">
<h1>{{ $t('title') }}</h1>
</div>
<!-- Title block end -->
<p>{{$t('description.dear')}},</p>
<p>{{$t('description.instructions')}}</p>
<p v-html="$t('description.followGuide')"></p>
<p v-html="$t('description.downloadFrom')"></p>
<h1>{{$t('sections.QLabel.title')}}</h1>
<p>{{$t('sections.QLabel.description')}}:</p>
<ol>
<li v-for="step in $t('sections.QLabel.steps')">
<span v-html="step"></span>
</li>
</ol>
<!-- Help section -->
<h1>{{$t('sections.help.title')}}</h1>
<p>{{$t('sections.help.description')}}</p>
<p v-html="$t('sections.help.remoteSupport')"></p>
<!-- End help section-->
<p>
<section v-if="client.salesPersonName">
{{$t('salesPersonName')}}: <strong>{{client.salesPersonName}}</strong>
</section>
<section v-if="client.salesPersonPhone">
{{$t('salesPersonPhone')}}: <strong>{{client.salesPersonPhone}}</strong>
</section>
<section v-if="client.salesPersonEmail">
{{$t('salesPersonEmail')}}:
<strong><a v-bind:href="`mailto: client.salesPersonEmail`" target="_blank">{{client.salesPersonEmail}}</strong>
</section>
</p>
</section>
<!-- Footer component -->
<email-footer
v-bind:is-preview="isPreview"
v-bind:locale="locale">
</email-footer>
<!-- End footer component -->
</section>
</body>
</html>