blob: 8929b672d7d4f145fabae19f581e47d6887e6f11 (
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
25
26
27
28
29
30
31
32
|
{% load thumbnail i18n %}<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>{{ newsletter.title }}: {{ message.title }}</title>
</head>
<body>
<h1>{{ newsletter.title }}</h1>
<h2>{{ message.title }}</h2>
{% for article in message.articles.all %}
<h3>{{ article.title }}</h3>
{% thumbnail article.image "200x200" as image %}
<img src="http://{{ site.domain }}{{ image.url }}" width="{{ image.width }}" height="{{ image.height }}">
{% endthumbnail %}
<div>{{ article.text|safe }}</div>
{% if article.url %}
<div><a href="{{ article.url }}">{% trans "Read more" %}</a></div>
{% endif %}
{% endfor %}
<ul>
{% if submission.publish %}
<li><a href="http://{{ site.domain }}{{ submission.get_absolute_url }}">{% trans "Read message online" %}</a></li>
{% endif %}
<li><a href="http://{{ site.domain }}{% url "newsletter_unsubscribe_request" newsletter.slug %}">{% trans "Unsubscribe" %}</a></li>
</ul>
</body>
</html>
|