blob: 3ed34db8ce29982900202f99ed47c4e0a1ad143e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
{% load i18n %}<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>{% blocktrans with title=newsletter.title %}Subscription to {{ title }}{% endblocktrans %}
</title>
</head>
<body>
{% blocktrans with name=subscription.name title=newsletter.title domain=site.domain url=subscription.subscribe_activate_url %}
<p>Hola-</p>
<p>Someone, hopefully you, asked to subscribe to {{ title }}, a luxagraf.net letter.</p>
<p>To confirm your subscription, please follow this activation link:
</p>
https://{{ domain }}{{ url }}
{% endblocktrans %}
<p>cheers<br />
Scott</p>
</body>
</html>
|