wbmailing 2.2.4__py2.py3-none-any.whl → 2.2.6__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of wbmailing might be problematic. Click here for more details.
- wbmailing/locale/de/LC_MESSAGES/django.po +1110 -0
- wbmailing/templates/email_base_template.html +291 -0
- wbmailing/templates/mailing/maintain_mail_subsciptions.html +7 -0
- wbmailing/templates/mailing/manage_mailing_list_subscriptions.html +26 -0
- wbmailing/templates/template.html +295 -0
- wbmailing/templates/test.html +294 -0
- wbmailing/templates/workbench.html +24 -0
- {wbmailing-2.2.4.dist-info → wbmailing-2.2.6.dist-info}/METADATA +2 -2
- {wbmailing-2.2.4.dist-info → wbmailing-2.2.6.dist-info}/RECORD +10 -3
- {wbmailing-2.2.4.dist-info → wbmailing-2.2.6.dist-info}/WHEEL +1 -1
|
@@ -0,0 +1,291 @@
|
|
|
1
|
+
{% load mailing_tags %}
|
|
2
|
+
{% load i18n %}
|
|
3
|
+
<html>
|
|
4
|
+
|
|
5
|
+
<head>
|
|
6
|
+
<meta charset="utf-8">
|
|
7
|
+
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
|
8
|
+
<title>{% translate "Atonra Research Newsletter" %}</title>
|
|
9
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
10
|
+
<style type="text/css">
|
|
11
|
+
/**
|
|
12
|
+
* Google webfonts. Recommended to include the .woff version for cross-client compatibility.
|
|
13
|
+
*/
|
|
14
|
+
@media screen {
|
|
15
|
+
@font-face {
|
|
16
|
+
font-family: 'Source Sans Pro';
|
|
17
|
+
font-style: normal;
|
|
18
|
+
font-weight: 400;
|
|
19
|
+
src: local('Source Sans Pro Regular'), local('SourceSansPro-Regular'), url(https://fonts.gstatic.com/s/sourcesanspro/v10/ODelI1aHBYDBqgeIAH2zlBM0YzuT7MdOe03otPbuUS0.woff) format('woff');
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
@font-face {
|
|
23
|
+
font-family: 'Source Sans Pro';
|
|
24
|
+
font-style: normal;
|
|
25
|
+
font-weight: 700;
|
|
26
|
+
src: local('Source Sans Pro Bold'), local('SourceSansPro-Bold'), url(https://fonts.gstatic.com/s/sourcesanspro/v10/toadOcfmlt9b38dHJxOBGFkQc6VGVFSmCnC_l7QZG60.woff) format('woff');
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* Avoid browser level font resizing.
|
|
32
|
+
* 1. Windows Mobile
|
|
33
|
+
* 2. iOS / OSX
|
|
34
|
+
*/
|
|
35
|
+
body,
|
|
36
|
+
table,
|
|
37
|
+
td,
|
|
38
|
+
a {
|
|
39
|
+
-ms-text-size-adjust: 100%;
|
|
40
|
+
/* 1 */
|
|
41
|
+
-webkit-text-size-adjust: 100%;
|
|
42
|
+
/* 2 */
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
/**
|
|
46
|
+
* Remove extra space added to tables and cells in Outlook.
|
|
47
|
+
*/
|
|
48
|
+
table,
|
|
49
|
+
td {
|
|
50
|
+
mso-table-rspace: 0pt;
|
|
51
|
+
mso-table-lspace: 0pt;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
/**
|
|
55
|
+
* Better fluid images in Internet Explorer.
|
|
56
|
+
*/
|
|
57
|
+
img {
|
|
58
|
+
-ms-interpolation-mode: bicubic;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
/**
|
|
62
|
+
* Remove blue links for iOS devices.
|
|
63
|
+
*/
|
|
64
|
+
a[x-apple-data-detectors] {
|
|
65
|
+
font-family: inherit !important;
|
|
66
|
+
font-size: inherit !important;
|
|
67
|
+
font-weight: inherit !important;
|
|
68
|
+
line-height: inherit !important;
|
|
69
|
+
color: inherit !important;
|
|
70
|
+
text-decoration: none !important;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
/**
|
|
74
|
+
* Fix centering issues in Android 4.4.
|
|
75
|
+
*/
|
|
76
|
+
div[style*="margin: 16px 0;"] {
|
|
77
|
+
margin: 0 !important;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
body {
|
|
81
|
+
width: 100% !important;
|
|
82
|
+
height: 100% !important;
|
|
83
|
+
padding: 0 !important;
|
|
84
|
+
margin: 0 !important;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
/**
|
|
88
|
+
* Collapse table borders to avoid space between cells.
|
|
89
|
+
*/
|
|
90
|
+
table {
|
|
91
|
+
border-collapse: collapse !important;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
a {
|
|
95
|
+
color: #1a82e2;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
img {
|
|
99
|
+
height: auto;
|
|
100
|
+
line-height: 100%;
|
|
101
|
+
text-decoration: none;
|
|
102
|
+
border: 0;
|
|
103
|
+
outline: none;
|
|
104
|
+
}
|
|
105
|
+
</style>
|
|
106
|
+
|
|
107
|
+
</head>
|
|
108
|
+
|
|
109
|
+
<body style="background-color: #eaf2ff;">
|
|
110
|
+
<!-- start body -->
|
|
111
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%">
|
|
112
|
+
|
|
113
|
+
<!-- start logo -->
|
|
114
|
+
<tr>
|
|
115
|
+
<td align="center" bgcolor="#eaf2ff">
|
|
116
|
+
<!--[if (gte mso 9)|(IE)]>
|
|
117
|
+
<table align="center" border="0" cellpadding="0" cellspacing="0" width="800">
|
|
118
|
+
<tr>
|
|
119
|
+
<td align="center" valign="top" width="800">
|
|
120
|
+
<![endif]-->
|
|
121
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%" style="width:800px;max-width:800px;">
|
|
122
|
+
<tr>
|
|
123
|
+
<td align="center" valign="top" style="padding-top: 36px;">
|
|
124
|
+
<img src="https://atonra.fra1.digitaloceanspaces.com/public/atonra_banderol.png" border="0"
|
|
125
|
+
width="800" alt="{% translate 'Atonrâ Logo' %}" style="display: block; width:800px; max-width:800px;height: auto;">
|
|
126
|
+
</td>
|
|
127
|
+
</tr>
|
|
128
|
+
</table>
|
|
129
|
+
<!--[if (gte mso 9)|(IE)]>
|
|
130
|
+
</td>
|
|
131
|
+
</tr>
|
|
132
|
+
</table>
|
|
133
|
+
<![endif]-->
|
|
134
|
+
</td>
|
|
135
|
+
</tr>
|
|
136
|
+
<!-- end logo -->
|
|
137
|
+
|
|
138
|
+
<!-- start hero -->
|
|
139
|
+
<tr>
|
|
140
|
+
<td align="center" bgcolor="#eaf2ff">
|
|
141
|
+
<!--[if (gte mso 9)|(IE)]>
|
|
142
|
+
<table align="center" border="0" cellpadding="0" cellspacing="0" width="800">
|
|
143
|
+
<tr>
|
|
144
|
+
<td align="center" valign="top" width="800">
|
|
145
|
+
<![endif]-->
|
|
146
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width:800px;">
|
|
147
|
+
<tr>
|
|
148
|
+
<td align="left" bgcolor="#ffffff"
|
|
149
|
+
style="padding: 36px 24px 0; font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif;">
|
|
150
|
+
<h1
|
|
151
|
+
style="margin: 0; font-size: 22px; font-weight: 800; letter-spacing: -1px; line-height: 48px;">
|
|
152
|
+
{{salutation}},
|
|
153
|
+
</h1>
|
|
154
|
+
</td>
|
|
155
|
+
</tr>
|
|
156
|
+
</table>
|
|
157
|
+
<!--[if (gte mso 9)|(IE)]>
|
|
158
|
+
</td>
|
|
159
|
+
</tr>
|
|
160
|
+
</table>
|
|
161
|
+
<![endif]-->
|
|
162
|
+
</td>
|
|
163
|
+
</tr>
|
|
164
|
+
<!-- end hero -->
|
|
165
|
+
|
|
166
|
+
<!-- start copy block -->
|
|
167
|
+
<tr>
|
|
168
|
+
<td align="center" bgcolor="#eaf2ff">
|
|
169
|
+
<!--[if (gte mso 9)|(IE)]>
|
|
170
|
+
<table align="center" border="0" cellpadding="0" cellspacing="0" width="800">
|
|
171
|
+
<tr>
|
|
172
|
+
<td align="center" valign="top" width="800">
|
|
173
|
+
<![endif]-->
|
|
174
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width:800px;">
|
|
175
|
+
|
|
176
|
+
<!-- start copy -->
|
|
177
|
+
<tr>
|
|
178
|
+
<td align="left" bgcolor="#ffffff"
|
|
179
|
+
style="padding: 24px; font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 24px;">
|
|
180
|
+
{% with content|stripAndsplit:";" as contents %}
|
|
181
|
+
{% blocktranslate %}<p>The monthly factsheet for <strong>{{ contents.0 }}</strong> has just been updated. You can find it <a href={{ contents.1 }}>here</a>.</p>
|
|
182
|
+
<p>You can download it as a pdf by clicking on the "save" button at its bottom right.</p>{% endblocktranslate %}
|
|
183
|
+
{% endwith %}
|
|
184
|
+
</td>
|
|
185
|
+
</tr>
|
|
186
|
+
<!-- end copy -->
|
|
187
|
+
|
|
188
|
+
<!-- start copy -->
|
|
189
|
+
<tr>
|
|
190
|
+
<td align="left" bgcolor="#ffffff"
|
|
191
|
+
style="padding: 0 24px 24px 24px; font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 24px; border-bottom: 3px solid #d4dadf">
|
|
192
|
+
<p style="margin: 0;">{% translate "Best Regards," %}</p>
|
|
193
|
+
<p style="margin: 0;">{% translate "The AtonRâ Partners Team." %}</p>
|
|
194
|
+
</td>
|
|
195
|
+
</tr>
|
|
196
|
+
<!-- end copy -->
|
|
197
|
+
|
|
198
|
+
</table>
|
|
199
|
+
<!--[if (gte mso 9)|(IE)]>
|
|
200
|
+
</td>
|
|
201
|
+
</tr>
|
|
202
|
+
</table>
|
|
203
|
+
<![endif]-->
|
|
204
|
+
</td>
|
|
205
|
+
</tr>
|
|
206
|
+
<!-- end copy block -->
|
|
207
|
+
|
|
208
|
+
<!-- start footer -->
|
|
209
|
+
<tr>
|
|
210
|
+
<td align="center" bgcolor="#eaf2ff" style="padding: 24px;">
|
|
211
|
+
<!--[if (gte mso 9)|(IE)]>
|
|
212
|
+
<table align="center" border="0" cellpadding="0" cellspacing="0" width="800">
|
|
213
|
+
<tr>
|
|
214
|
+
<td align="center" valign="top" width="800">
|
|
215
|
+
<![endif]-->
|
|
216
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width:800px;">
|
|
217
|
+
|
|
218
|
+
<!-- start permission -->
|
|
219
|
+
<tr>
|
|
220
|
+
<td align="center" bgcolor="#eaf2ff"
|
|
221
|
+
style="padding: 12px 24px; font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif; font-size: 14px; line-height: 20px; color: #666;">
|
|
222
|
+
<p style="margin: 0;" style="text-align: center">
|
|
223
|
+
{% blocktranslate %}<b>AtonRâ Partners SA</b><br />
|
|
224
|
+
7, rue de la Croix d’Or, 1204 Geneva, Switzerland<br />{% endblocktranslate %}
|
|
225
|
+
</p>
|
|
226
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width:800px;">
|
|
227
|
+
<tr>
|
|
228
|
+
<td align="center" bgcolor="#eaf2ff"
|
|
229
|
+
style="width:33%; font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif; font-size: 14px; line-height: 20px; color: #666;">
|
|
230
|
+
🌍: <a href="https://www.atonra.ch" target="_blank">https://www.atonra.ch</a>
|
|
231
|
+
</td>
|
|
232
|
+
<td align="center" bgcolor="#eaf2ff"
|
|
233
|
+
style="width:33%; font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif; font-size: 14px; line-height: 20px; color: #666;">
|
|
234
|
+
@: <a href="mailto:team@atonra.ch">team@atonra.ch</a>
|
|
235
|
+
</td>
|
|
236
|
+
<td align="center" bgcolor="#eaf2ff"
|
|
237
|
+
style="width:33%; font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif; font-size: 14px; line-height: 20px; color: #666;">
|
|
238
|
+
☎️: <a href="tel:+41-229-061-616">+41 22 906 16 16</a>
|
|
239
|
+
</td>
|
|
240
|
+
</tr>
|
|
241
|
+
</table>
|
|
242
|
+
</td>
|
|
243
|
+
</tr>
|
|
244
|
+
<tr>
|
|
245
|
+
<td align="center" bgcolor="#eaf2ff"
|
|
246
|
+
style="padding: 12px 24px; font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif; font-size: 14px; line-height: 20px; color: #666;">
|
|
247
|
+
<p style="margin: 0;" style="text-align: center">{% blocktranslate %}<b>About AtonRâ Partners:</b> AtonRâ
|
|
248
|
+
Partners is an asset management
|
|
249
|
+
company, founded in
|
|
250
|
+
2004 with head office in Geneva, incorporated under Swiss law, duly approved by the
|
|
251
|
+
Swiss Financial
|
|
252
|
+
Market Supervisory Authority (FINMA) under the Swiss Collective Investment Schemes Act.
|
|
253
|
+
AtonRâ
|
|
254
|
+
Partners is a conviction-driven asset manager combining industrial and scientific
|
|
255
|
+
research with
|
|
256
|
+
financial analysis. AtonRâ Partners focuses on long-term trends powerful enough to be
|
|
257
|
+
turned into
|
|
258
|
+
thematic equity portfolios.</p>{% endblocktranslate %}
|
|
259
|
+
</td>
|
|
260
|
+
</tr>
|
|
261
|
+
<!-- end permission -->
|
|
262
|
+
|
|
263
|
+
<!-- start unsubscribe -->
|
|
264
|
+
<tr>
|
|
265
|
+
<td align="center" bgcolor="#eaf2ff"
|
|
266
|
+
style="padding: 12px 24px; font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif; font-size: 14px; line-height: 20px; color: #666;">
|
|
267
|
+
{% if unsubscribe %}
|
|
268
|
+
<p style="margin: 0;" style="text-align: center">{% blocktranslate %}If you receive this email because you are
|
|
269
|
+
subscribed to our mailing list:
|
|
270
|
+
Please feel free to {% endblocktranslate %}{{unsubscribe|safe}} </p>
|
|
271
|
+
{% endif %}
|
|
272
|
+
</td>
|
|
273
|
+
</tr>
|
|
274
|
+
<!-- end unsubscribe -->
|
|
275
|
+
|
|
276
|
+
</table>
|
|
277
|
+
<!--[if (gte mso 9)|(IE)]>
|
|
278
|
+
</td>
|
|
279
|
+
</tr>
|
|
280
|
+
</table>
|
|
281
|
+
<![endif]-->
|
|
282
|
+
</td>
|
|
283
|
+
</tr>
|
|
284
|
+
<!-- end footer -->
|
|
285
|
+
|
|
286
|
+
</table>
|
|
287
|
+
<!-- end body -->
|
|
288
|
+
|
|
289
|
+
</body>
|
|
290
|
+
|
|
291
|
+
</html>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{% load i18n %}
|
|
2
|
+
<h1>{% translate "Manage E-Mail Subscriptions" %}</h1>
|
|
3
|
+
<ul>
|
|
4
|
+
{% for mailing_list in mail_settings.subscriptions.all %}
|
|
5
|
+
<li>{{ mailing_list.title }} <a href="{% url 'wbmailing:unsubscribe' mail_settings.id mailing_list.id %}">{% translate "Unsubscribe" %}</a></li>
|
|
6
|
+
{% endfor %}
|
|
7
|
+
</ul>
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{% extends 'workbench.html' %}
|
|
2
|
+
{% load i18n %}
|
|
3
|
+
{% block content %}
|
|
4
|
+
|
|
5
|
+
<div class="container-fluid">
|
|
6
|
+
<div class="row">
|
|
7
|
+
<div class="col"></div>
|
|
8
|
+
<div class="col-6">
|
|
9
|
+
{% if mailing_lists.exists %}
|
|
10
|
+
<h4>{% translate "The subscriptions for: " %}{{ email_contact.address }}</h4>
|
|
11
|
+
<ul class="list-group">
|
|
12
|
+
{% for mailing_list in mailing_lists.all %}
|
|
13
|
+
<li class="list-group-item">
|
|
14
|
+
{{ mailing_list.title }} <a class="btn btn-outline-primary btn-sm" href="{% url 'wbmailing:unsubscribe' email_contact.id mailing_list.id %}">{% translate "Unsubscribe" %}</a>
|
|
15
|
+
</li>
|
|
16
|
+
{% endfor %}
|
|
17
|
+
<ul>
|
|
18
|
+
{% else %}
|
|
19
|
+
<h4>{% translate "No Subscriptions For: " %}{{ email_contact.address }}</h4>
|
|
20
|
+
{% endif %}
|
|
21
|
+
</div>
|
|
22
|
+
<div class="col"></div>
|
|
23
|
+
</div>
|
|
24
|
+
</div>
|
|
25
|
+
|
|
26
|
+
{% endblock content %}
|
|
@@ -0,0 +1,295 @@
|
|
|
1
|
+
{% load i18n %}
|
|
2
|
+
|
|
3
|
+
<html>
|
|
4
|
+
|
|
5
|
+
<head>
|
|
6
|
+
<meta charset="utf-8">
|
|
7
|
+
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
|
8
|
+
<title>{% translate "Atonra Research Newsletter" %}</title>
|
|
9
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
10
|
+
<style type="text/css">
|
|
11
|
+
/**
|
|
12
|
+
* Google webfonts. Recommended to include the .woff version for cross-client compatibility.
|
|
13
|
+
*/
|
|
14
|
+
@media screen {
|
|
15
|
+
@font-face {
|
|
16
|
+
font-family: 'Source Sans Pro';
|
|
17
|
+
font-style: normal;
|
|
18
|
+
font-weight: 400;
|
|
19
|
+
src: local('Source Sans Pro Regular'), local('SourceSansPro-Regular'), url(https://fonts.gstatic.com/s/sourcesanspro/v10/ODelI1aHBYDBqgeIAH2zlBM0YzuT7MdOe03otPbuUS0.woff) format('woff');
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
@font-face {
|
|
23
|
+
font-family: 'Source Sans Pro';
|
|
24
|
+
font-style: normal;
|
|
25
|
+
font-weight: 700;
|
|
26
|
+
src: local('Source Sans Pro Bold'), local('SourceSansPro-Bold'), url(https://fonts.gstatic.com/s/sourcesanspro/v10/toadOcfmlt9b38dHJxOBGFkQc6VGVFSmCnC_l7QZG60.woff) format('woff');
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* Avoid browser level font resizing.
|
|
32
|
+
* 1. Windows Mobile
|
|
33
|
+
* 2. iOS / OSX
|
|
34
|
+
*/
|
|
35
|
+
body,
|
|
36
|
+
table,
|
|
37
|
+
td,
|
|
38
|
+
a {
|
|
39
|
+
-ms-text-size-adjust: 100%;
|
|
40
|
+
/* 1 */
|
|
41
|
+
-webkit-text-size-adjust: 100%;
|
|
42
|
+
/* 2 */
|
|
43
|
+
}
|
|
44
|
+
.ExternalClass {width: 100%;}
|
|
45
|
+
/**
|
|
46
|
+
* Remove extra space added to tables and cells in Outlook.
|
|
47
|
+
*/
|
|
48
|
+
table,
|
|
49
|
+
td {
|
|
50
|
+
mso-table-rspace: 0pt;
|
|
51
|
+
mso-table-lspace: 0pt;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
/**
|
|
55
|
+
* Better fluid images in Internet Explorer.
|
|
56
|
+
*/
|
|
57
|
+
img {
|
|
58
|
+
-ms-interpolation-mode: bicubic;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
/**
|
|
62
|
+
* Remove blue links for iOS devices.
|
|
63
|
+
*/
|
|
64
|
+
a[x-apple-data-detectors] {
|
|
65
|
+
font-family: inherit !important;
|
|
66
|
+
font-size: inherit !important;
|
|
67
|
+
font-weight: inherit !important;
|
|
68
|
+
line-height: inherit !important;
|
|
69
|
+
color: inherit !important;
|
|
70
|
+
text-decoration: none !important;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
/**
|
|
74
|
+
* Fix centering issues in Android 4.4.
|
|
75
|
+
*/
|
|
76
|
+
div[style*="margin: 16px 0;"] {
|
|
77
|
+
margin: 0 !important;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
body {
|
|
81
|
+
width: 100% !important;
|
|
82
|
+
height: 100% !important;
|
|
83
|
+
padding: 0 !important;
|
|
84
|
+
margin: 0 !important;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
/**
|
|
88
|
+
* Collapse table borders to avoid space between cells.
|
|
89
|
+
*/
|
|
90
|
+
table {
|
|
91
|
+
border-collapse: collapse !important;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
a {
|
|
95
|
+
color: #1a82e2;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
img {
|
|
99
|
+
height: auto;
|
|
100
|
+
line-height: 100%;
|
|
101
|
+
text-decoration: none;
|
|
102
|
+
border: 0;
|
|
103
|
+
outline: none;
|
|
104
|
+
}
|
|
105
|
+
</style>
|
|
106
|
+
|
|
107
|
+
</head>
|
|
108
|
+
|
|
109
|
+
<body style="background-color: #eaf2ff;">
|
|
110
|
+
<!-- start body -->
|
|
111
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%">
|
|
112
|
+
|
|
113
|
+
<!-- start logo -->
|
|
114
|
+
<tr>
|
|
115
|
+
<td align="center" bgcolor="#eaf2ff">
|
|
116
|
+
<!--[if (gte mso 9)|(IE)]>
|
|
117
|
+
<table align="center" border="0" cellpadding="0" cellspacing="0" width="800">
|
|
118
|
+
<tr>
|
|
119
|
+
<td align="center" valign="top" width="800">
|
|
120
|
+
<![endif]-->
|
|
121
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%" style="width:800px;max-width:800px;">
|
|
122
|
+
<tr>
|
|
123
|
+
<td align="center" valign="top" style="padding-top: 36px;">
|
|
124
|
+
<img src="https://atonra.fra1.digitaloceanspaces.com/public/atonra_banderol.png" border="0"
|
|
125
|
+
width="800" alt="{% translate 'Atonrâ Logo' %}" style="display: block; width:800px; max-width:800px;height: auto;">
|
|
126
|
+
</td>
|
|
127
|
+
</tr>
|
|
128
|
+
</table>
|
|
129
|
+
<!--[if (gte mso 9)|(IE)]>
|
|
130
|
+
</td>
|
|
131
|
+
</tr>
|
|
132
|
+
</table>
|
|
133
|
+
<![endif]-->
|
|
134
|
+
</td>
|
|
135
|
+
</tr>
|
|
136
|
+
<!-- end logo -->
|
|
137
|
+
|
|
138
|
+
<!-- start hero -->
|
|
139
|
+
<tr>
|
|
140
|
+
<td align="center" bgcolor="#eaf2ff">
|
|
141
|
+
<!--[if (gte mso 9)|(IE)]>
|
|
142
|
+
<table align="center" border="0" cellpadding="0" cellspacing="0" width="800">
|
|
143
|
+
<tr>
|
|
144
|
+
<td align="center" valign="top" width="800">
|
|
145
|
+
<![endif]-->
|
|
146
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width:800px;">
|
|
147
|
+
<tr>
|
|
148
|
+
<td align="left" bgcolor="#ffffff"
|
|
149
|
+
style="padding: 26px 24px 0; font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif;">
|
|
150
|
+
<h1
|
|
151
|
+
style="margin: 0; font-size: 22px; font-weight: 800; letter-spacing: -1px; line-height: 48px;">
|
|
152
|
+
{{salutation}},
|
|
153
|
+
</h1>
|
|
154
|
+
<p>{% blocktranslate %}The monthly factsheets for our various equity portfolios have just been updated. Please find a quick summary below.</p>
|
|
155
|
+
<p>If you want more detailed data or the factsheet as a pdf, please visit our interactive factsheets {% endblocktranslate %}<a href="https://atonra.stainly-bench.com/public/factsheet">{% translate "here" %}</a>.</p>
|
|
156
|
+
</td>
|
|
157
|
+
</tr>
|
|
158
|
+
</table>
|
|
159
|
+
<!--[if (gte mso 9)|(IE)]>
|
|
160
|
+
</td>
|
|
161
|
+
</tr>
|
|
162
|
+
</table>
|
|
163
|
+
<![endif]-->
|
|
164
|
+
</td>
|
|
165
|
+
</tr>
|
|
166
|
+
<!-- end hero -->
|
|
167
|
+
|
|
168
|
+
<!-- start copy block -->
|
|
169
|
+
<tr>
|
|
170
|
+
<td align="center" bgcolor="#eaf2ff">
|
|
171
|
+
<!--[if (gte mso 9)|(IE)]>
|
|
172
|
+
<table align="center" border="0" cellpadding="0" cellspacing="0" width="800">
|
|
173
|
+
<tr>
|
|
174
|
+
<td align="center" valign="top" width="800">
|
|
175
|
+
<![endif]-->
|
|
176
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width:800px;">
|
|
177
|
+
|
|
178
|
+
<!-- start copy -->
|
|
179
|
+
<tr>
|
|
180
|
+
<td align="left" bgcolor="#ffffff"
|
|
181
|
+
style="padding: 24px; font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 24px;">
|
|
182
|
+
<a href="https://atonra.stainly-bench.com/public/factsheet">
|
|
183
|
+
<img src="{{content|safe}}"
|
|
184
|
+
border="0" width="752"
|
|
185
|
+
alt="{% translate 'Factsheet Summary' %}"
|
|
186
|
+
style="display: block; width:752px; max-width:752px;height: auto;">
|
|
187
|
+
</a>
|
|
188
|
+
</td>
|
|
189
|
+
</tr>
|
|
190
|
+
<!-- end copy -->
|
|
191
|
+
|
|
192
|
+
<!-- start copy -->
|
|
193
|
+
<tr>
|
|
194
|
+
<td align="left" bgcolor="#ffffff"
|
|
195
|
+
style="padding: 0 24px 24px 24px; font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 24px; border-bottom: 3px solid #d4dadf">
|
|
196
|
+
<p style="margin: 0;">{% translate "Best Regards," %}</p>
|
|
197
|
+
<p style="margin: 0;">{% translate "The AtonRâ Partners Team." %}</p>
|
|
198
|
+
</td>
|
|
199
|
+
</tr>
|
|
200
|
+
<!-- end copy -->
|
|
201
|
+
|
|
202
|
+
</table>
|
|
203
|
+
<!--[if (gte mso 9)|(IE)]>
|
|
204
|
+
</td>
|
|
205
|
+
</tr>
|
|
206
|
+
</table>
|
|
207
|
+
<![endif]-->
|
|
208
|
+
</td>
|
|
209
|
+
</tr>
|
|
210
|
+
<!-- end copy block -->
|
|
211
|
+
|
|
212
|
+
<!-- start footer -->
|
|
213
|
+
<tr>
|
|
214
|
+
<td align="center" bgcolor="#eaf2ff" style="padding: 24px;">
|
|
215
|
+
<!--[if (gte mso 9)|(IE)]>
|
|
216
|
+
<table align="center" border="0" cellpadding="0" cellspacing="0" width="800">
|
|
217
|
+
<tr>
|
|
218
|
+
<td align="center" valign="top" width="800">
|
|
219
|
+
<![endif]-->
|
|
220
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width:800px;">
|
|
221
|
+
|
|
222
|
+
<!-- start permission -->
|
|
223
|
+
<tr>
|
|
224
|
+
<td align="center" bgcolor="#eaf2ff"
|
|
225
|
+
style="padding: 12px 24px; font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif; font-size: 14px; line-height: 20px; color: #666;">
|
|
226
|
+
<p style="margin: 0;" style="text-align: center">
|
|
227
|
+
<b>{% blocktranslate %}AtonRâ Partners SA</b><br />
|
|
228
|
+
7, rue de la Croix d’Or, 1204 Geneva, Switzerland{% endblocktranslate %}<br />
|
|
229
|
+
</p>
|
|
230
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width:800px;">
|
|
231
|
+
<tr>
|
|
232
|
+
<td align="center" bgcolor="#eaf2ff"
|
|
233
|
+
style="width:33%; font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif; font-size: 14px; line-height: 20px; color: #666;">
|
|
234
|
+
🌍: <a href="https://www.atonra.ch" target="_blank">https://www.atonra.ch</a>
|
|
235
|
+
</td>
|
|
236
|
+
<td align="center" bgcolor="#eaf2ff"
|
|
237
|
+
style="width:33%; font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif; font-size: 14px; line-height: 20px; color: #666;">
|
|
238
|
+
@: <a href="mailto:team@atonra.ch">team@atonra.ch</a>
|
|
239
|
+
</td>
|
|
240
|
+
<td align="center" bgcolor="#eaf2ff"
|
|
241
|
+
style="width:33%; font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif; font-size: 14px; line-height: 20px; color: #666;">
|
|
242
|
+
☎️: <a href="tel:+41-229-061-616">+41 22 906 16 16</a>
|
|
243
|
+
</td>
|
|
244
|
+
</tr>
|
|
245
|
+
</table>
|
|
246
|
+
</td>
|
|
247
|
+
</tr>
|
|
248
|
+
<tr>
|
|
249
|
+
<td align="center" bgcolor="#eaf2ff"
|
|
250
|
+
style="padding: 12px 24px; font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif; font-size: 14px; line-height: 20px; color: #666;">
|
|
251
|
+
<p style="margin: 0;" style="text-align: center">{% blocktranslate %}<b>About AtonRâ Partners:</b> AtonRâ
|
|
252
|
+
Partners is an asset management
|
|
253
|
+
company, founded in
|
|
254
|
+
2004 with head office in Geneva, incorporated under Swiss law, duly approved by the
|
|
255
|
+
Swiss Financial
|
|
256
|
+
Market Supervisory Authority (FINMA) under the Swiss Collective Investment Schemes Act.
|
|
257
|
+
AtonRâ
|
|
258
|
+
Partners is a conviction-driven asset manager combining industrial and scientific
|
|
259
|
+
research with
|
|
260
|
+
financial analysis. AtonRâ Partners focuses on long-term trends powerful enough to be
|
|
261
|
+
turned into
|
|
262
|
+
thematic equity portfolios.{% endblocktranslate %}</p>
|
|
263
|
+
</td>
|
|
264
|
+
</tr>
|
|
265
|
+
<!-- end permission -->
|
|
266
|
+
|
|
267
|
+
<!-- start unsubscribe -->
|
|
268
|
+
<tr>
|
|
269
|
+
<td align="center" bgcolor="#eaf2ff"
|
|
270
|
+
style="padding: 12px 24px; font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif; font-size: 14px; line-height: 20px; color: #666;">
|
|
271
|
+
{% if unsubscribe %}
|
|
272
|
+
<p style="margin: 0;" style="text-align: center">{% blocktranslate %}If you receive this email because you are
|
|
273
|
+
subscribed to our mailing list:
|
|
274
|
+
Please feel free to {% endblocktranslate %}{{unsubscribe|safe}} </p>
|
|
275
|
+
{% endif %}
|
|
276
|
+
</td>
|
|
277
|
+
</tr>
|
|
278
|
+
<!-- end unsubscribe -->
|
|
279
|
+
|
|
280
|
+
</table>
|
|
281
|
+
<!--[if (gte mso 9)|(IE)]>
|
|
282
|
+
</td>
|
|
283
|
+
</tr>
|
|
284
|
+
</table>
|
|
285
|
+
<![endif]-->
|
|
286
|
+
</td>
|
|
287
|
+
</tr>
|
|
288
|
+
<!-- end footer -->
|
|
289
|
+
|
|
290
|
+
</table>
|
|
291
|
+
<!-- end body -->
|
|
292
|
+
|
|
293
|
+
</body>
|
|
294
|
+
|
|
295
|
+
</html>
|