{% extends "Emailing/newsletter.html" %} {% load i18n coop_edition coop_utils thumbnail %} {% block body_style %}background: #444; font-family: 'Verdana', sans-serif; font-size: 12px;{% endblock %} {% block newsletter %} {% nlf_css a="color: #000" h3="font-weight: bold;" h2="color: #fff; padding: 2px 5px; background: #888;" "h2 a"="color: #fff;" %}
Sanza
{% with news_items=newsletter.items.all %}
{% cms_edit newsletter %}

{{ newsletter.subject }}

{{ newsletter.content }} {% end_cms_edit %}
 
{% if news_items %}

{% trans "News" %}

{% for nl_item in news_items %} {% with item=nl_item.content_object %} {% endwith %} {% endfor %}
{% with art_img=item.logo_thumbnail %} {% endwith %}

{{item.title}}

{{item.summary|linebreaksbr}}
{% endif %} {% endwith %}
{% trans "This newsletter has been created and sent with Sanza" %}
{% end_nlf_css %} {% endblock %}