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.
62 lines
2.8 KiB
62 lines
2.8 KiB
{% load static i18n %}
|
|
<!doctype html>
|
|
<html lang="ru">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<title>{% trans 'Настройте рассылку от Expomap' %}</title>
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/fancybox/2.1.4/jquery.fancybox.min.css">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/malihu-custom-scrollbar-plugin/3.1.5/jquery.mCustomScrollbar.min.css">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.min.css">
|
|
<link rel="stylesheet" href="{% static 'mailing_settings/css/main.css' %}">
|
|
<link rel="stylesheet" href="{% static 'mailing_settings/css/form.css' %}">
|
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js" defer></script>
|
|
</head>
|
|
|
|
<body>
|
|
<header class="page_header">
|
|
<div class="container">
|
|
<div class="logo_block">
|
|
<a href="/"><img src="{% static 'mailing_settings/images/logo.png' %}" alt="Expomap"></a>
|
|
<a href="/" class="back_to_site">expomap.ru <span>›</span></a>
|
|
</div>
|
|
<h1>{% trans 'Настройте рассылку от Expomap' %}</h1>
|
|
<p>{% trans 'для' %} <span>{{ contact.email }}</span></p>
|
|
</div>
|
|
</header>
|
|
|
|
{% include 'client/includes/accounts/mailing_settings_form.html' %}
|
|
|
|
<footer class="page_footer">© Expomap {% now "Y" %}</footer>
|
|
|
|
|
|
<div class="modals">
|
|
<div id="search-modal">
|
|
{% include 'client/popups/new_themes.html' %}
|
|
</div>
|
|
|
|
<div id="cities-modal">
|
|
{% include 'client/popups/russia_cities.html' %}
|
|
</div>
|
|
|
|
<div id="countries_modal">
|
|
{% include 'client/popups/mailing_settings_countries.html' %}
|
|
</div>
|
|
|
|
{% if unsubscribe_success or unsubscribed %}
|
|
<div id="unsibscribed_modal">
|
|
{% include 'client/popups/unsubscribed.html' %}
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/fancybox/2.1.4/jquery.fancybox.pack.min.js" defer></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/malihu-custom-scrollbar-plugin/3.1.5/jquery.mCustomScrollbar.min.js" defer></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/mustache.js/2.3.0/mustache.min.js" defer></script>
|
|
<script src="{% static 'mailing_settings/js/main.js' %}" defer></script>
|
|
</body>
|
|
</html>
|
|
|
|
|
|
|