You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
981 B
18 lines
981 B
{% load static %}
|
|
{% load i18n %}
|
|
{% load template_filters %}
|
|
|
|
<div id="unsibscribed" class="popup-window unsibscribed">
|
|
<header>
|
|
<div class="title">{% if unsubscribe_success %}{% trans 'Вы отписались от нашей рассылки' %}{% else %}{% trans 'Вы не подписаны ни на одну из наших рассылок' %}{% endif %}</div>
|
|
</header>
|
|
|
|
<div class="body">
|
|
{% if unsubscribe_success %}
|
|
{% trans "Мы расстроены, но отписали Вас от всех писем. Надеемся, в скором времени вы снова захотите быть в курсе событий своей отрасли." %}
|
|
{% else %}
|
|
{% trans "Надеемся, в скором времени вы снова захотите быть в курсе событий своей отрасли." %}
|
|
{% endif %}
|
|
<div class="wait-ajax"></div>
|
|
</div>
|
|
</div>
|
|
|