salix/print/templates/email/claim-pickup-order/claim-pickup-order.html

43 lines
1.6 KiB
HTML
Raw Normal View History

2019-01-25 14:08:11 +00:00
<!DOCTYPE html>
<html lang="es">
<head>
<title>{{ $t('subject') }}</title>
</head>
<body>
<section class="container">
2019-02-06 09:53:12 +00:00
<!-- Header component -->
2019-10-29 06:46:44 +00:00
<email-header :is-preview="isPreview"></email-header>
2019-02-06 09:53:12 +00:00
<!-- End header component -->
2019-01-25 14:08:11 +00:00
<section class="main">
<!-- Title block -->
<div class="title">
<h1>{{ $t('title') }}</h1>
</div>
<!-- Title block end -->
2019-10-29 06:46:44 +00:00
{{$t('testing')}}
2019-01-25 14:08:11 +00:00
<p>{{$t('description.dear')}},</p>
<p>{{$t('description.instructions')}}</p>
<!-- <h1>{{$t('sections.howToBuy.title')}}</h1>
<p>{{$t('sections.howToBuy.description')}}</p>
<ol>
<li v-for="requeriment in $t('sections.howToBuy.requeriments')">
<span v-html="requeriment"></span>
</li>
</ol>
<p>{{$t('sections.howToBuy.stock')}}</p>
<p>{{$t('sections.howToBuy.delivery')}}</p> -->
2019-10-29 06:46:44 +00:00
<section>
<section v-for="attachment in attachments">
<a href="/api/report/claim-pickup-order?userId=106&claimId=5" target="_blank">Ver PDF</a>
</section>
</section>
2019-01-25 14:08:11 +00:00
</section>
2019-02-06 09:53:12 +00:00
<!-- Footer component -->
2019-10-29 06:46:44 +00:00
<email-footer :is-preview="isPreview" :locale="locale"></email-footer>
2019-02-06 09:53:12 +00:00
<!-- End footer component -->
2019-01-25 14:08:11 +00:00
</section>
</body>
</html>