commit
e99f3b011e
63 changed files with 2840 additions and 3694 deletions
@ -1,78 +1,27 @@ |
|||||||
var EXPO = EXPO || {}; //isolated namespace
|
var EXPO = EXPO || {}; //isolated namespace
|
||||||
EXPO.exposition = EXPO.exposition || {}; |
EXPO.exposition = EXPO.exposition || {}; |
||||||
if (EXPO.exposition.list){ |
if (EXPO.exposition.list){ |
||||||
console.warn('WARNING: EXPO.place.object is already defined!'); |
console.warn('WARNING: EXPO.place.object is already defined!'); |
||||||
}else { |
}else { |
||||||
|
|
||||||
EXPO.exposition.list = (function () { |
EXPO.exposition.list = (function () { |
||||||
// dependencies
|
// dependencies
|
||||||
var com = EXPO.common; |
var com = EXPO.common; |
||||||
|
|
||||||
// variables
|
// variables
|
||||||
var that = {}, |
var that = {}; |
||||||
Note = function (it, opt) { |
that.opt = {}; //свойства по умолчанию
|
||||||
this.opt = opt; |
|
||||||
this.DOMthis = it; |
|
||||||
this.DOMbutton = it.querySelector('.'+opt.buttonClass); |
|
||||||
this.DOMinput = it.querySelector('.'+opt.inputClass); |
|
||||||
this.inputName = this.DOMinput.getAttribute('name'); |
|
||||||
this.url = this.DOMbutton.getAttribute('href'); |
|
||||||
this._controller(); |
|
||||||
}; |
|
||||||
Note.prototype = { |
|
||||||
_init: function () { |
|
||||||
|
|
||||||
}, |
|
||||||
_controller: function () { |
|
||||||
var self = this; |
|
||||||
$(this.DOMinput).on('blur', function () { |
|
||||||
self.send(); |
|
||||||
}); |
|
||||||
$(this.DOMbutton).on('click', function () { |
|
||||||
return false; |
|
||||||
}); |
|
||||||
}, |
|
||||||
send: function () { |
|
||||||
var data = {}, |
|
||||||
response, |
|
||||||
self = this, |
|
||||||
handler = function (data) { |
|
||||||
if (data.success) { |
|
||||||
console.log('ok'); |
|
||||||
$(self.DOMbutton).addClass('active'); |
|
||||||
} else { |
|
||||||
console.log('data not send'); |
|
||||||
} |
|
||||||
|
|
||||||
}; |
|
||||||
data[this.inputName] = this.DOMinput.value; |
|
||||||
response = com.getRequest(data,this.url,handler); |
|
||||||
} |
|
||||||
}; |
|
||||||
|
|
||||||
that.opt = {}; //свойства по умолчанию
|
|
||||||
//private
|
//private
|
||||||
$(function () { |
$(function () { |
||||||
}); |
}); |
||||||
|
|
||||||
// methods
|
// methods
|
||||||
//инициализация общих свойств
|
//инициализация общих свойств
|
||||||
that.init = function (options) { |
that.init = function (options) { |
||||||
$.extend(this.opt, options); |
$.extend(this.opt, options); |
||||||
this.notes = []; |
com.opt.addCalendarText = this.opt.addCalendarText; |
||||||
var self = this; |
com.opt.removeCalendarText = this.opt.removeCalendarText; |
||||||
|
}; |
||||||
$('.'+this.opt.note.wrapClass).each(function () { |
return that; |
||||||
var note = new Note(this,self.opt.note); |
}()); |
||||||
self.notes.push(note); |
|
||||||
}); |
|
||||||
$('.'+this.opt.note.wrapDisabledClass).on('click', function () { |
|
||||||
$.fancybox.open('#pw-login'); |
|
||||||
return false; |
|
||||||
}); |
|
||||||
com.opt.addCalendarText = this.opt.addCalendarText; |
|
||||||
com.opt.removeCalendarText = this.opt.removeCalendarText; |
|
||||||
}; |
|
||||||
return that; |
|
||||||
}()); |
|
||||||
} |
} |
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@ -1,74 +0,0 @@ |
|||||||
var EXPO = EXPO || {}; //isolated namespace
|
|
||||||
if (EXPO.index) { |
|
||||||
console.warn('WARNING: EXPO.eventsFeed is already defined!'); |
|
||||||
} else { |
|
||||||
EXPO.index = (function () { |
|
||||||
// variables
|
|
||||||
var that = {}; |
|
||||||
|
|
||||||
//default module setting
|
|
||||||
that.opt = {}; |
|
||||||
//dependence's
|
|
||||||
var com = EXPO.common; |
|
||||||
//private
|
|
||||||
var Note = function (it, opt) { |
|
||||||
this.opt = opt; |
|
||||||
this.DOMthis = it; |
|
||||||
this.DOMbutton = it.querySelector('.'+opt.buttonClass); |
|
||||||
this.DOMinput = it.querySelector('.'+opt.inputClass); |
|
||||||
this.inputName = this.DOMinput.getAttribute('name'); |
|
||||||
this.url = this.DOMbutton.getAttribute('href'); |
|
||||||
this._controller(); |
|
||||||
}; |
|
||||||
Note.prototype = { |
|
||||||
_init: function () { |
|
||||||
|
|
||||||
}, |
|
||||||
_controller: function () { |
|
||||||
var self = this; |
|
||||||
$(this.DOMinput).on('blur', function () { |
|
||||||
self.send(); |
|
||||||
}); |
|
||||||
$(this.DOMbutton).on('click', function () { |
|
||||||
return false; |
|
||||||
}); |
|
||||||
}, |
|
||||||
send: function () { |
|
||||||
var data = {}, |
|
||||||
response, |
|
||||||
self = this, |
|
||||||
handler = function (data) { |
|
||||||
if (data.success){ |
|
||||||
console.log('ok'); |
|
||||||
$(self.DOMbutton).addClass('active'); |
|
||||||
}else{ |
|
||||||
console.log('data not send'); |
|
||||||
} |
|
||||||
|
|
||||||
}; |
|
||||||
data[this.inputName] = this.DOMinput.value; |
|
||||||
response = com.getRequest(data,this.url,handler); |
|
||||||
} |
|
||||||
}; |
|
||||||
|
|
||||||
///////////////////////////
|
|
||||||
//инициализация общих свойств
|
|
||||||
that.init = function (options) { |
|
||||||
// settings extending
|
|
||||||
$.extend(this.opt, options); |
|
||||||
// begin of initialization
|
|
||||||
var self = this; |
|
||||||
this.notes = []; |
|
||||||
$('.'+this.opt.note.wrapClass).each(function () { |
|
||||||
var note = new Note(this,self.opt.note); |
|
||||||
self.notes.push(note); |
|
||||||
}); |
|
||||||
$('.'+this.opt.note.wrapDisabledClass).on('click', function () { |
|
||||||
$.fancybox.open('#pw-login'); |
|
||||||
return false; |
|
||||||
}); |
|
||||||
|
|
||||||
}; |
|
||||||
return that; |
|
||||||
}()); |
|
||||||
} |
|
||||||
@ -1 +1 @@ |
|||||||
var EXPO=EXPO||{};EXPO.exposition=EXPO.exposition||{},EXPO.exposition.list?console.warn("WARNING: EXPO.place.object is already defined!"):EXPO.exposition.list=function(){var t=EXPO.common,n={},o=function(t,n){this.opt=n,this.DOMthis=t,this.DOMbutton=t.querySelector("."+n.buttonClass),this.DOMinput=t.querySelector("."+n.inputClass),this.inputName=this.DOMinput.getAttribute("name"),this.url=this.DOMbutton.getAttribute("href"),this._controller()};return o.prototype={_init:function(){},_controller:function(){var t=this;$(this.DOMinput).on("blur",function(){t.send()}),$(this.DOMbutton).on("click",function(){return!1})},send:function(){var n,o={},i=this,e=function(t){t.success?(console.log("ok"),$(i.DOMbutton).addClass("active")):console.log("data not send")};o[this.inputName]=this.DOMinput.value,n=t.getRequest(o,this.url,e)}},n.opt={},$(function(){}),n.init=function(n){$.extend(this.opt,n),this.notes=[];var i=this;$("."+this.opt.note.wrapClass).each(function(){var t=new o(this,i.opt.note);i.notes.push(t)}),$("."+this.opt.note.wrapDisabledClass).on("click",function(){return $.fancybox.open("#pw-login"),!1}),t.opt.addCalendarText=this.opt.addCalendarText,t.opt.removeCalendarText=this.opt.removeCalendarText},n}(); |
var EXPO=EXPO||{};EXPO.exposition=EXPO.exposition||{},EXPO.exposition.list?console.warn("WARNING: EXPO.place.object is already defined!"):EXPO.exposition.list=function(){var t=EXPO.common,e={};return e.opt={},$(function(){}),e.init=function(e){$.extend(this.opt,e),t.opt.addCalendarText=this.opt.addCalendarText,t.opt.removeCalendarText=this.opt.removeCalendarText},e}(); |
||||||
File diff suppressed because one or more lines are too long
@ -1 +1 @@ |
|||||||
var EXPO=EXPO||{};EXPO.exposition=EXPO.exposition||{},EXPO.exposition.object?console.warn("WARNING: EXPO.exposition.object is already defined!"):EXPO.exposition.object=function(){var t,s=EXPO.common,i={},e=function(t,s){this.opt=s,this.DOMthis=t,this.DOMbutton=t.querySelector("."+s.buttonClass),this.DOMinput=t.querySelector("."+s.inputClass),this.inputName=this.DOMinput.getAttribute("name"),this.url=this.DOMbutton.getAttribute("href"),this._controller()};return e.prototype={_init:function(){},_controller:function(){var t=this;$(this.DOMinput).on("blur",function(){t.send()}),$(this.DOMbutton).on("click",function(){return!1})},send:function(){var t,i={},e=this,o=function(t){t.success?(console.log("ok"),$(e.DOMbutton).addClass("active")):console.log("data not send")};i[this.inputName]=this.DOMinput.value,t=s.getRequest(i,this.url,o)}},i.opt={},$(function(){t=$("#wait-ajax:not(.absolute)").css({"z-index":"8031"})}),i.init=function(i){$.extend(this.opt,i);var o=this,n=$("."+this.opt.visit.activeClass+", ."+this.opt.visit.passiveClass);this.notes=[],$("."+this.opt.note.wrapClass).each(function(){var t=new e(this,o.opt.note);o.notes.push(t)}),$("."+this.opt.note.wrapDisabledClass).on("click",function(){return $.fancybox.open("#pw-login"),!1}),s.opt.addCalendarText=this.opt.addCalendarText,s.opt.removeCalendarText=this.opt.removeCalendarText,n.off("click"),n.on("click",function(){return $(this).hasClass("no_auth")||($(this).hasClass(o.opt.visit.activeClass)?($("."+o.opt.visit.activeClass).hide().siblings("."+o.opt.visit.passiveClass).show(),$("#"+o.opt.visit.visitorsListId).append(o.opt.visit.currentHtml),$("#"+o.opt.visit.somebodyId).removeClass("hidden"),$("#"+o.opt.visit.nobodyId).addClass("hidden")):($("."+o.opt.visit.passiveClass).hide().siblings("."+o.opt.visit.activeClass).show(),$("#"+o.opt.visit.visitorsListId).children(".current").remove(),0==$("#"+o.opt.visit.visitorsListId).children().length&&($("#"+o.opt.visit.somebodyId).addClass("hidden"),$("#"+o.opt.visit.nobodyId).removeClass("hidden")))),!1}),$("#"+this.opt.advertise.id).on("submit",function(){var i=$(this).serialize(),e=$(this).attr("action"),o=$(this),n=function(s){var i=function(){$(".err",o).removeClass("err"),$(".pwf-msg",o).text("")};if(1!=s.success){i();for(var e in s.errors)s.errors.hasOwnProperty(e)&&$('input[name="'+e+'"]',o).closest(".required").addClass("err").siblings(".pwf-msg").text(s.errors[e])}else i(),dataLayer.push({event:"advmemberform"}),$("input:text",o).val(""),$.fancybox.close();t.hide()};return t.show(),s.postRequest(i,e,n),!1}),$("#"+this.opt.event_news_subscribe.id).on("submit",function(){var i=$(this).serialize(),e=$(this).attr("action"),o=$(this),n=function(s){var i=function(){$(".err",o).removeClass("err"),$(".pwf-msg",o).text("")};if(1!=s.success){i();for(var e in s.errors)console.log(s.errors.hasOwnProperty(e)),console.log(e),s.errors.hasOwnProperty(e)&&$('input[name="'+e+'"]',o).closest(".required").addClass("err").siblings(".pwf-msg").text(s.errors[e])}else i(),dataLayer.push({event:"event-news-subscribe-form"}),$("input:text",o).val(""),$("p#success").show(),1==s.sent?window.location=s.redirect_url:window.setTimeout(function(){$.fancybox.close()},1e3);t.hide()};return t.show(),s.postRequest(i,e,n),!1})},i}(); |
var EXPO=EXPO||{};EXPO.exposition=EXPO.exposition||{},EXPO.exposition.object?console.warn("WARNING: EXPO.exposition.object is already defined!"):EXPO.exposition.object=function(){var s,t=EXPO.common,e={};return e.opt={},$(function(){s=$("#wait-ajax:not(.absolute)").css({"z-index":"8031"})}),e.init=function(e){$.extend(this.opt,e);var i=this,o=$("."+this.opt.visit.activeClass+", ."+this.opt.visit.passiveClass);t.opt.addCalendarText=this.opt.addCalendarText,t.opt.removeCalendarText=this.opt.removeCalendarText,o.off("click"),o.on("click",function(){return $(this).hasClass("no_auth")||($(this).hasClass(i.opt.visit.activeClass)?($("."+i.opt.visit.activeClass).hide().siblings("."+i.opt.visit.passiveClass).show(),$("#"+i.opt.visit.visitorsListId).append(i.opt.visit.currentHtml),$("#"+i.opt.visit.somebodyId).removeClass("hidden"),$("#"+i.opt.visit.nobodyId).addClass("hidden")):($("."+i.opt.visit.passiveClass).hide().siblings("."+i.opt.visit.activeClass).show(),$("#"+i.opt.visit.visitorsListId).children(".current").remove(),0==$("#"+i.opt.visit.visitorsListId).children().length&&($("#"+i.opt.visit.somebodyId).addClass("hidden"),$("#"+i.opt.visit.nobodyId).removeClass("hidden")))),!1}),$("#"+this.opt.advertise.id).on("submit",function(){var e=$(this).serialize(),i=$(this).attr("action"),o=$(this),r=function(t){var e=function(){$(".err",o).removeClass("err"),$(".pwf-msg",o).text("")};if(t.success!==!0){e();for(var i in t.errors)t.errors.hasOwnProperty(i)&&$('input[name="'+i+'"]',o).closest(".required").addClass("err").siblings(".pwf-msg").text(t.errors[i])}else e(),dataLayer.push({event:"advmemberform"}),$("input:text",o).val(""),$.fancybox.close();s.hide()};return s.show(),t.postRequest(e,i,r),!1}),$("#"+this.opt.event_news_subscribe.id).on("submit",function(){var e=$(this).serialize(),i=$(this).attr("action"),o=$(this),r=function(t){var e=function(){$(".err",o).removeClass("err"),$(".pwf-msg",o).text("")};if(1!=t.success){e();for(var i in t.errors)console.log(t.errors.hasOwnProperty(i)),console.log(i),t.errors.hasOwnProperty(i)&&$('input[name="'+i+'"]',o).closest(".required").addClass("err").siblings(".pwf-msg").text(t.errors[i])}else e(),dataLayer.push({event:"event-news-subscribe-form"}),$("input:text",o).val(""),$("p#success").show(),1==t.sent?window.location=t.redirect_url:window.setTimeout(function(){$.fancybox.close()},1e3);s.hide()};return s.show(),t.postRequest(e,i,r),!1})},e}(); |
||||||
@ -1 +0,0 @@ |
|||||||
var EXPO=EXPO||{};EXPO.index?console.warn("WARNING: EXPO.eventsFeed is already defined!"):EXPO.index=function(){var t={};t.opt={};var n=EXPO.common,i=function(t,n){this.opt=n,this.DOMthis=t,this.DOMbutton=t.querySelector("."+n.buttonClass),this.DOMinput=t.querySelector("."+n.inputClass),this.inputName=this.DOMinput.getAttribute("name"),this.url=this.DOMbutton.getAttribute("href"),this._controller()};return i.prototype={_init:function(){},_controller:function(){var t=this;$(this.DOMinput).on("blur",function(){t.send()}),$(this.DOMbutton).on("click",function(){return!1})},send:function(){var t,i={},o=this,e=function(t){t.success?(console.log("ok"),$(o.DOMbutton).addClass("active")):console.log("data not send")};i[this.inputName]=this.DOMinput.value,t=n.getRequest(i,this.url,e)}},t.init=function(t){$.extend(this.opt,t);var n=this;this.notes=[],$("."+this.opt.note.wrapClass).each(function(){var t=new i(this,n.opt.note);n.notes.push(t)}),$("."+this.opt.note.wrapDisabledClass).on("click",function(){return $.fancybox.open("#pw-login"),!1})},t}(); |
|
||||||
File diff suppressed because one or more lines are too long
@ -1,13 +0,0 @@ |
|||||||
{% load i18n %} |
|
||||||
|
|
||||||
<div class="i-sub-articles"> |
|
||||||
<ul> |
|
||||||
{% with services=object.get_services_detail %} |
|
||||||
{% for service in services %} |
|
||||||
<li> |
|
||||||
<a href="{{ exposition.get_permanent_url }}service/{{ service.url }}/">{{ service.name }}</a> |
|
||||||
</li> |
|
||||||
{% endfor %} |
|
||||||
{% endwith %} |
|
||||||
</ul> |
|
||||||
</div> |
|
||||||
@ -1,18 +0,0 @@ |
|||||||
{% load i18n %} |
|
||||||
|
|
||||||
<div class="i-sub-articles"> |
|
||||||
<ul> |
|
||||||
{% with services=object.get_services_detail %} |
|
||||||
{% for service in services %} |
|
||||||
<li> |
|
||||||
{# временно создаём условие, т.к. для переводчиков подключаем партнёров #} |
|
||||||
{% if service.name == 'Переводчик' %} |
|
||||||
<a href="https://www.interpreters.travel/ru/new_partner_search?partner_id=44&search[city_name]={{ object.place.city }}&search_date={{ object.data_begin|date:'Y-m-d' }}" target="_blank">{{ service.name }}</a> |
|
||||||
{% else %} |
|
||||||
<a href="{{ exposition.get_permanent_url }}service/{{ service.url }}/">{{ service.name }}</a> |
|
||||||
{% endif %} |
|
||||||
</li> |
|
||||||
{% endfor %} |
|
||||||
{% endwith %} |
|
||||||
</ul> |
|
||||||
</div> |
|
||||||
@ -1,312 +0,0 @@ |
|||||||
{% load static %} |
|
||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" |
|
||||||
"http://www.w3.org/TR/html4/loose.dtd"> |
|
||||||
<html style="margin: 0; padding: 0; height: 100%;"> |
|
||||||
<head> |
|
||||||
<title>Тестовове письмо</title> |
|
||||||
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> |
|
||||||
</head> |
|
||||||
<body style="margin: 0; padding: 0; min-height: 100%; background: #f4f2ee;"> |
|
||||||
<table cellpadding="0" cellspacing="0" border="0" width="100%" height="100%" bgcolor="#f4f2ee" style="font-family: Arial, sans-serif; background: #f4f2ee;"> |
|
||||||
<tr> |
|
||||||
<td align="center" style="padding: 50px 0"> |
|
||||||
|
|
||||||
<table cellpadding="0" cellspacing="0" border="0" width="600" style="width: 600px;"> |
|
||||||
<tr> |
|
||||||
<td style="vertical-align: top;"> |
|
||||||
<div class="logo"> |
|
||||||
<a style="text-decoration: none; color: #a2a2a2; font-size: 12px;" href="#"> |
|
||||||
<img src="{% static 'client/img/logo.png' %}" alt="Expomap.ru" /> |
|
||||||
<b style="display: block; padding-left: 67px; margin-top: -5px;">Выставки, конференции, семинары</b> |
|
||||||
</a> |
|
||||||
</div> |
|
||||||
</td> |
|
||||||
<td style="vertical-align: top; padding-top: 22px;"> |
|
||||||
<ul class="t-links" style="margin: 0 0 15px; padding: 0; list-style: none; text-align: right; font-size: 16px; line-height: 17px; font-weight: bold;"> |
|
||||||
<li style="display: inline-block;"><a style="text-decoration: none; color: #ff6600" href="#">СОБЫТИЯ</a></li> |
|
||||||
<li style="display: inline-block; margin-left: 20px;"><a style="text-decoration: none; color: #ff6600" href="#">МЕСТА</a></li> |
|
||||||
<li style="display: inline-block; margin-left: 20px;"><a style="text-decoration: none; color: #ff6600" href="#">УЧАСТНИКИ</a></li> |
|
||||||
</ul> |
|
||||||
|
|
||||||
<ul class="soc-media-buttons" style="margin: 0; padding: 0; list-style: none; text-align: right;"> |
|
||||||
<li style="display: inline-block;"><a href="#"><img src="{% static 'client/img/soc-medias/sm-icon-rss.png' %}" title="RSS" alt="RSS" /></a></li> |
|
||||||
<li style="display: inline-block; margin-left: 5px;"><a href="#"><img src="{% static 'client/img/soc-medias/sm-icon-fb.png' %}" title="Facebook" alt="Facebook" /></a></li> |
|
||||||
<li style="display: inline-block; margin-left: 5px;"><a href="#"><img src="{% static 'client/img/soc-medias/sm-icon-lin.png' %}" title="LinkedIn" alt="LinkedIn" /></a></li> |
|
||||||
<li style="display: inline-block; margin-left: 5px;"><a href="#"><img src="{% static 'client/img/soc-medias/sm-icon-vk.png' %}" title="В контакте" alt="В контакте" /></a></li> |
|
||||||
<li style="display: inline-block; margin-left: 5px;"><a href="#"><img src="{% static 'client/img/soc-medias/sm-icon-twit.png' %}" title="Twitter" alt="Twitter" /></a></li> |
|
||||||
</ul> |
|
||||||
</td> |
|
||||||
</tr> |
|
||||||
</table> |
|
||||||
|
|
||||||
|
|
||||||
<table cellpadding="0" cellspacing="0" border="0" width="600" style="width: 600px; margin-bottom: 10px;"> |
|
||||||
<tr> |
|
||||||
<td style="padding: 20px 0 0;"><a style="display: block; padding: 25px 30px; text-decoration: none; background: #ff6600; color: #ffffff; font-size: 20px; line-height: 26px;" href="#">Выставки в Москве по тематике: <b style="display: block; font-size: 26px;">Мебель, Дизайн интерьеров</b></a></td> |
|
||||||
</tr> |
|
||||||
<tr> |
|
||||||
<td style="padding: 10px 30px 15px; background: #faf9f7;"> |
|
||||||
|
|
||||||
<table cellpadding="0" cellspacing="0" border="0" width="540" style="margin-bottom: 15px;"> |
|
||||||
|
|
||||||
<tr valign="top"> |
|
||||||
<td style="padding: 15px 15px 15px 0; width: 76px; border-bottom: 1px dotted #cccccc;"> |
|
||||||
<table cellpadding="0" cellspacing="0" border="0"> |
|
||||||
<tr> |
|
||||||
<td style="background: #ffffff; padding: 3px; width: 70px; height: 70px; vertical-align: middle; text-align: center; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px;"><a href="#"><img src="{% static 'client/img/_del-temp/cl-logo-1.png' %}" style="width: 100%;" alt="" /></a></td> |
|
||||||
</tr> |
|
||||||
</table> |
|
||||||
</td> |
|
||||||
<td style="padding: 15px 15px 15px 0; border-bottom: 1px dotted #cccccc;"> |
|
||||||
<h2 style="margin: 0 0 5px; font-family: Tahoma, Arial, sans-serif; font-size: 18px; line-height: 21px;"><a style="color: #464646; text-decoration: none;" href="#">Foire de Pau 2013</a></h2> |
|
||||||
<p style="margin: 0 0 7px; font-size: 12px; line-height: 15px; color: #a2a2a2"><a style="color: #a2a2a2; text-decoration: none;" href="#">Международная ярмарка потребительских товаров</a></p> |
|
||||||
<a class="button" style="display: inline-block; padding: 4px 10px 3px; text-decoration: none; color: #ff6600; font-size: 11px; font-weight: bold; line-height: 14px; border: 1px solid #feb17d; text-transform: uppercase; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px;" href="#">добавить в расписание</a> |
|
||||||
<div class="addr" style="margin-top: 10px; font-size: 13px; line-height: 15px;"><img src="{% static 'client/img/pin.png' %}" width="10" height="15" alt="" style="vertical-align: middle; margin-top: -1px;" /> Россия, Москва, ЦВК «Экспоцентр»</div> |
|
||||||
</td> |
|
||||||
<td style="padding: 17px 0; text-align: right; font-size: 13px; line-height: 16px; color: #ff6600; width: 140px; border-bottom: 1px dotted #cccccc;"> |
|
||||||
<img src="{% static 'client/img/clock.png' %}" width="14" height="15" style="vertical-align: middle; margin-top: -1px;" alt="" /> с 5 по 20 октября |
|
||||||
</td> |
|
||||||
</tr> |
|
||||||
|
|
||||||
<tr valign="top"> |
|
||||||
<td style="padding: 15px 15px 15px 0; width: 76px; border-bottom: 1px dotted #cccccc;"> |
|
||||||
<table cellpadding="0" cellspacing="0" border="0"> |
|
||||||
<tr> |
|
||||||
<td style="background: #ffffff; padding: 3px; width: 70px; height: 70px; vertical-align: middle; text-align: center; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px;"><a href="#"><img src="{% static 'client/img/_del-temp/cl-logo-2.png' %}" style="width: 100%;" alt="" /></a></td> |
|
||||||
</tr> |
|
||||||
</table> |
|
||||||
</td> |
|
||||||
<td style="padding: 15px 15px 15px 0; border-bottom: 1px dotted #cccccc;"> |
|
||||||
<h2 style="margin: 0 0 5px; font-family: Tahoma, Arial, sans-serif; font-size: 18px; line-height: 21px;"><a style="color: #464646; text-decoration: none;" href="#">Foire de Pau 2013</a></h2> |
|
||||||
<p style="margin: 0 0 7px; font-size: 12px; line-height: 15px; color: #a2a2a2"><a style="color: #a2a2a2; text-decoration: none;" href="#">Международная ярмарка потребительских товаров</a></p> |
|
||||||
<a class="button" style="display: inline-block; padding: 4px 10px 3px; text-decoration: none; color: #ff6600; font-size: 11px; font-weight: bold; line-height: 14px; border: 1px solid #feb17d; text-transform: uppercase; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px;" href="#">добавить в расписание</a> |
|
||||||
<div class="addr" style="margin-top: 10px; font-size: 13px; line-height: 15px;"><img src="{% static 'client/img/pin.png' %}" width="10" height="15" alt="" style="vertical-align: middle; margin-top: -1px;" /> Россия, Москва, ЦВК «Экспоцентр»</div> |
|
||||||
</td> |
|
||||||
<td style="padding: 17px 0; text-align: right; font-size: 13px; line-height: 16px; color: #ff6600; width: 140px; border-bottom: 1px dotted #cccccc;"> |
|
||||||
<img src="{% static 'client/img/clock.png' %}" width="14" height="15" style="vertical-align: middle; margin-top: -1px;" alt="" /> с 5 по 20 октября |
|
||||||
</td> |
|
||||||
</tr> |
|
||||||
|
|
||||||
<tr valign="top"> |
|
||||||
<td style="padding: 15px 15px 15px 0; width: 76px; border-bottom: 1px dotted #cccccc;"> |
|
||||||
<table cellpadding="0" cellspacing="0" border="0"> |
|
||||||
<tr> |
|
||||||
<td style="background: #ffffff; padding: 3px; width: 70px; height: 70px; vertical-align: middle; text-align: center; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px;"><a href="#"><img src="{% static 'client/img/_del-temp/cl-logo-3.png' %}" style="width: 100%;" alt="" /></a></td> |
|
||||||
</tr> |
|
||||||
</table> |
|
||||||
</td> |
|
||||||
<td style="padding: 15px 15px 15px 0; border-bottom: 1px dotted #cccccc;"> |
|
||||||
<h2 style="margin: 0 0 5px; font-family: Tahoma, Arial, sans-serif; font-size: 18px; line-height: 21px;"><a style="color: #464646; text-decoration: none;" href="#">Foire de Pau 2013</a></h2> |
|
||||||
<p style="margin: 0 0 7px; font-size: 12px; line-height: 15px; color: #a2a2a2"><a style="color: #a2a2a2; text-decoration: none;" href="#">Международная ярмарка потребительских товаров</a></p> |
|
||||||
<a class="button" style="display: inline-block; padding: 4px 10px 3px; text-decoration: none; color: #ff6600; font-size: 11px; font-weight: bold; line-height: 14px; border: 1px solid #feb17d; text-transform: uppercase; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px;" href="#">добавить в расписание</a> |
|
||||||
<div class="addr" style="margin-top: 10px; font-size: 13px; line-height: 15px;"><img src="{% static 'client/img/pin.png' %}" width="10" height="15" alt="" style="vertical-align: middle; margin-top: -1px;" /> Россия, Москва, ЦВК «Экспоцентр»</div> |
|
||||||
</td> |
|
||||||
<td style="padding: 17px 0; text-align: right; font-size: 13px; line-height: 16px; color: #ff6600; width: 140px; border-bottom: 1px dotted #cccccc;"> |
|
||||||
<img src="{% static 'client/img/clock.png' %}" width="14" height="15" style="vertical-align: middle; margin-top: -1px;" alt="" /> с 5 по 20 октября |
|
||||||
</td> |
|
||||||
</tr> |
|
||||||
|
|
||||||
</table> |
|
||||||
|
|
||||||
<div class="more" style="text-align: center;"> |
|
||||||
<a class="button" style="display: inline-block; padding: 4px 10px 3px; text-decoration: none; color: #2592c5; font-size: 11px; font-weight: bold; line-height: 14px; border: 1px solid #90c7e0; text-transform: uppercase; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; width: 336px;" href="#">посмотреть все события</a> |
|
||||||
</div> |
|
||||||
|
|
||||||
</td> |
|
||||||
</tr> |
|
||||||
</table> |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<table cellpadding="0" cellspacing="0" border="0" width="600" style="width: 600px; margin-bottom: 10px;"> |
|
||||||
<tr> |
|
||||||
<td style="padding: 20px 0 0;"><a style="display: block; padding: 25px 30px; text-decoration: none; background: #ff6600; color: #ffffff; font-size: 20px; line-height: 26px;" href="#">Новости событий</a></td> |
|
||||||
</tr> |
|
||||||
<tr> |
|
||||||
<td style="padding: 10px 30px 15px; background: #faf9f7;"> |
|
||||||
|
|
||||||
<table cellpadding="0" cellspacing="0" border="0" width="540" style="margin-bottom: 15px;"> |
|
||||||
|
|
||||||
<tr valign="top"> |
|
||||||
<td style="padding: 15px 15px 15px 0; width: 76px; border-bottom: 1px dotted #cccccc;"> |
|
||||||
<table cellpadding="0" cellspacing="0" border="0"> |
|
||||||
<tr> |
|
||||||
<td style="background: #ffffff; padding: 0; width: 76px; height: 76px; vertical-align: middle; text-align: center;"><a href="#"><img style="width: 100%; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px;" alt="" src="{% static 'client/img/_del-temp/news-1.jpg' %}" /></a></td> |
|
||||||
</tr> |
|
||||||
</table> |
|
||||||
</td> |
|
||||||
<td style="padding: 15px 0; border-bottom: 1px dotted #cccccc;"> |
|
||||||
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin-bottom: 5px;"> |
|
||||||
<tr> |
|
||||||
<td><h2 style="margin: 0 0 5px; font-family: Tahoma, Arial, sans-serif; font-size: 18px; line-height: 21px;"><a style="color: #464646; text-decoration: none;" href="#">Foire de Pau 2013</a></h2></td> |
|
||||||
<td style="font-size: 13px; line-height: 15px; text-align: right; color: #ff6600;">05.10.2013</td> |
|
||||||
</tr> |
|
||||||
</table> |
|
||||||
|
|
||||||
<p style="margin: 0 0 7px; font-size: 13px; line-height: 17px;"><a style="color: #464646; text-decoration: none;" href="#">VII Международный форум «АтомЭко 2013» пройдет 30-31 октября в Москве под знаком нулевого ущерба для экологии. Главная тема VIIМеждународного Форума «АтомЭко 2013»: «Атомная энергетика – стратегия нулевого ущерба», где будут обсуждаться вопросы по обращению с радиоактивными отходами (РАО) и отработавшим <span style="text-decoration: underline; color: #ff6600;">...</span></a></p> |
|
||||||
|
|
||||||
</td> |
|
||||||
</tr> |
|
||||||
|
|
||||||
<tr valign="top"> |
|
||||||
<td style="padding: 15px 15px 15px 0; width: 76px; border-bottom: 1px dotted #cccccc;"> |
|
||||||
<table cellpadding="0" cellspacing="0" border="0"> |
|
||||||
<tr> |
|
||||||
<td style="background: #ffffff; padding: 0; width: 76px; height: 76px; vertical-align: middle; text-align: center;"><a href="#"><img style="width: 100%; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px;" alt="" src="{% static 'client/img/_del-temp/news-1.jpg' %}" /></a></td> |
|
||||||
</tr> |
|
||||||
</table> |
|
||||||
</td> |
|
||||||
<td style="padding: 15px 0; border-bottom: 1px dotted #cccccc;"> |
|
||||||
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin-bottom: 5px;"> |
|
||||||
<tr> |
|
||||||
<td><h2 style="margin: 0 0 5px; font-family: Tahoma, Arial, sans-serif; font-size: 18px; line-height: 21px;"><a style="color: #464646; text-decoration: none;" href="#">Foire de Pau 2013</a></h2></td> |
|
||||||
<td style="font-size: 13px; line-height: 15px; text-align: right; color: #ff6600;">05.10.2013</td> |
|
||||||
</tr> |
|
||||||
</table> |
|
||||||
|
|
||||||
<p style="margin: 0 0 7px; font-size: 13px; line-height: 17px;"><a style="color: #464646; text-decoration: none;" href="#">VII Международный форум «АтомЭко 2013» пройдет 30-31 октября в Москве под знаком нулевого ущерба для экологии. Главная тема VIIМеждународного Форума «АтомЭко 2013»: «Атомная энергетика – стратегия нулевого ущерба», где будут обсуждаться вопросы по обращению с радиоактивными отходами (РАО) и отработавшим <span style="text-decoration: underline; color: #ff6600;">...</span></a></p> |
|
||||||
|
|
||||||
</td> |
|
||||||
</tr> |
|
||||||
|
|
||||||
<tr valign="top"> |
|
||||||
<td style="padding: 15px 0; width: 76px; border-bottom: 1px dotted #cccccc;"> |
|
||||||
<table cellpadding="0" cellspacing="0" border="0"> |
|
||||||
<tr> |
|
||||||
<td style="background: #ffffff; padding: 0; width: 76px; height: 76px; vertical-align: middle; text-align: center;"><a href="#"><img style="width: 100%; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px;" alt="" src="{% static 'client/img/_del-temp/news-1.jpg' %}" /></a></td> |
|
||||||
</tr> |
|
||||||
</table> |
|
||||||
</td> |
|
||||||
<td style="padding: 15px 15px 15px 0; border-bottom: 1px dotted #cccccc;"> |
|
||||||
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin-bottom: 5px;"> |
|
||||||
<tr> |
|
||||||
<td><h2 style="margin: 0 0 5px; font-family: Tahoma, Arial, sans-serif; font-size: 18px; line-height: 21px;"><a style="color: #464646; text-decoration: none;" href="#">Foire de Pau 2013</a></h2></td> |
|
||||||
<td style="font-size: 13px; line-height: 15px; text-align: right; color: #ff6600;">05.10.2013</td> |
|
||||||
</tr> |
|
||||||
</table> |
|
||||||
|
|
||||||
<p style="margin: 0 0 7px; font-size: 13px; line-height: 17px;"><a style="color: #464646; text-decoration: none;" href="#">VII Международный форум «АтомЭко 2013» пройдет 30-31 октября в Москве под знаком нулевого ущерба для экологии. Главная тема VIIМеждународного Форума «АтомЭко 2013»: «Атомная энергетика – стратегия нулевого ущерба», где будут обсуждаться вопросы по обращению с радиоактивными отходами (РАО) и отработавшим <span style="text-decoration: underline; color: #ff6600;">...</span></a></p> |
|
||||||
|
|
||||||
</td> |
|
||||||
</tr> |
|
||||||
|
|
||||||
</table> |
|
||||||
|
|
||||||
<div class="more" style="text-align: center;"> |
|
||||||
<a class="button" style="display: inline-block; padding: 4px 10px 3px; text-decoration: none; color: #2592c5; font-size: 11px; font-weight: bold; line-height: 14px; border: 1px solid #90c7e0; text-transform: uppercase; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; width: 336px;" href="#">посмотреть все новости</a> |
|
||||||
</div> |
|
||||||
|
|
||||||
</td> |
|
||||||
</tr> |
|
||||||
</table> |
|
||||||
|
|
||||||
|
|
||||||
<table cellpadding="0" cellspacing="0" border="0" width="600" style="width: 600px; margin-bottom: 10px;"> |
|
||||||
<tr> |
|
||||||
<td style="padding: 20px 0 0;"><a style="display: block; padding: 25px 30px; text-decoration: none; background: #ff6600; color: #ffffff; font-size: 20px; line-height: 26px;" href="#">Фоторепортаж: Международный форум «АтомЭко 2013»</a></td> |
|
||||||
</tr> |
|
||||||
<tr> |
|
||||||
<td style="padding: 10px 30px 15px; background: #faf9f7;"> |
|
||||||
|
|
||||||
<table cellpadding="0" cellspacing="0" border="0" width="540" style="margin-bottom: 15px;"> |
|
||||||
|
|
||||||
<tr valign="top"> |
|
||||||
<td style="padding: 15px 0; border-bottom: 1px dotted #cccccc;"> |
|
||||||
|
|
||||||
<table cellpadding="0" cellspacing="0" border="0" style="margin-bottom: 10px;"> |
|
||||||
<tr> |
|
||||||
<td style="width: 100px;"><a href="#"><img src="{% static 'client/img/_del-temp/phr-1.jpg' %}" width="100" height="100" alt="" /></a></td> |
|
||||||
<td style="width: 100px; padding-left: 10px;"><a href="#"><img src="{% static 'client/img/_del-temp/phr-2.jpg' %}" width="100" height="100" alt="" /></a></td> |
|
||||||
<td style="width: 100px; padding-left: 10px;"><a href="#"><img src="{% static 'client/img/_del-temp/phr-3.jpg' %}" width="100" height="100" alt="" /></a></td> |
|
||||||
<td style="width: 100px; padding-left: 10px;"><a href="#"><img src="{% static 'client/img/_del-temp/phr-4.jpg' %}" width="100" height="100" alt="" /></a></td> |
|
||||||
<td style="width: 100px; padding-left: 10px;"><a href="#"><img src="{% static 'client/img/_del-temp/phr-2.jpg' %}" width="100" height="100" alt="" /></a></td> |
|
||||||
</tr> |
|
||||||
</table> |
|
||||||
|
|
||||||
<p style="margin: 0 0 7px; font-size: 12px; line-height: 15px;"><a style="color: #464646; text-decoration: none;" href="#">Идея Russian Affiliate Congress and Expo возникла в ответ на необходимость развития бизнеса России и стран СНГ в соответствии с мировыми тенденциями. Партнерские программы — один из наиболее эффективных и широко применяемых на западе инструментов интернет маркетинга, доля которого на рынке интернет продвижения развитых стран около 40 %, для сравнения в России и странах СНГ на этот сегмент приходится около 10%. Разница очевидна.</a></p> |
|
||||||
|
|
||||||
</td> |
|
||||||
</tr> |
|
||||||
|
|
||||||
</table> |
|
||||||
|
|
||||||
<div class="more" style="text-align: center;"> |
|
||||||
<a class="button" style="display: inline-block; padding: 4px 10px 3px; text-decoration: none; color: #2592c5; font-size: 11px; font-weight: bold; line-height: 14px; border: 1px solid #90c7e0; text-transform: uppercase; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; width: 336px;" href="#">посмотреть все фотрепортажи</a> |
|
||||||
</div> |
|
||||||
|
|
||||||
</td> |
|
||||||
</tr> |
|
||||||
</table> |
|
||||||
|
|
||||||
<table cellpadding="0" cellspacing="0" border="0" width="600" style="width: 600px; margin-bottom: 10px;"> |
|
||||||
<tr> |
|
||||||
<td style="padding: 20px 0 0;"><a href="#"><img src="{% static 'client/img/_del-temp/mail-banner.jpg' %}" width="600" height="145" alt="" /></a></td> |
|
||||||
</tr> |
|
||||||
</table> |
|
||||||
|
|
||||||
<table cellpadding="0" cellspacing="0" border="0" width="600" style="width: 600px; margin-bottom: 10px;"> |
|
||||||
<tr> |
|
||||||
<td style="padding: 20px 0 0;"><a style="display: block; padding: 25px 30px; text-decoration: none; background: #ff6600; color: #ffffff; font-size: 20px; line-height: 26px;" href="#">Аналитика для профессионалов</a></td> |
|
||||||
</tr> |
|
||||||
<tr> |
|
||||||
<td style="padding: 10px 30px 15px; background: #faf9f7;"> |
|
||||||
|
|
||||||
<table cellpadding="0" cellspacing="0" border="0" width="540"> |
|
||||||
|
|
||||||
<tr valign="top"> |
|
||||||
<td style="padding: 15px 15px 0 0; width: 76px;"> |
|
||||||
<table cellpadding="0" cellspacing="0" border="0"> |
|
||||||
<tr> |
|
||||||
<td style="background: #ffffff; padding: 0; width: 76px; height: 76px; vertical-align: middle; text-align: center;"><a href="#"><img style="width: 100%; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px;" alt="" src="{% static 'client/img/_del-temp/news-1.jpg' %}" /></a></td> |
|
||||||
</tr> |
|
||||||
</table> |
|
||||||
</td> |
|
||||||
<td style="padding: 15px 0 0;"> |
|
||||||
|
|
||||||
<h2 style="margin: 0 0 5px; font-family: Tahoma, Arial, sans-serif; font-size: 18px; line-height: 21px;"><a style="color: #464646; text-decoration: none;" href="#">Древние славянские практики для оздоровления души и тела презентуют на красноярской Ярмарке здоровья</a></h2> |
|
||||||
<p style="margin: 0 0 7px; font-size: 13px; line-height: 17px;"><a style="color: #464646; text-decoration: none;" href="#">VII Международный форум «АтомЭко 2013» пройдет 30-31 октября в Москве под знаком нулевого ущерба для экологии. Главная тема VIIМеждународного Форума «АтомЭко 2013»: «Атомная энергетика – стратегия нулевого ущерба», где будут обсуждаться вопросы по обращению с радиоактивными отходами (РАО) и отработавшим <span style="text-decoration: underline; color: #ff6600;">...</span></a></p> |
|
||||||
|
|
||||||
</td> |
|
||||||
</tr> |
|
||||||
|
|
||||||
</table> |
|
||||||
|
|
||||||
</td> |
|
||||||
</tr> |
|
||||||
</table> |
|
||||||
|
|
||||||
<table cellpadding="0" cellspacing="0" border="0" width="600" style="width: 600px; border-bottom: 1px dotted #cccccc;"> |
|
||||||
<tr> |
|
||||||
<td style="vertical-align: top; padding: 15px 0 10px;"> |
|
||||||
<div class="logo"> |
|
||||||
<a style="text-decoration: none; color: #a2a2a2; font-size: 12px;" href="#"> |
|
||||||
<img src="{% static 'client/img/mail-logo-2.jpg' %}" alt="Expomap.ru" /> |
|
||||||
</a> |
|
||||||
</div> |
|
||||||
</td> |
|
||||||
<td style="vertical-align: top; padding: 25px 0 5px;"> |
|
||||||
<ul class="t-links" style="margin: 0 0 15px; padding: 0; list-style: none; text-align: right; font-size: 14px; line-height: 15px; font-weight: bold;"> |
|
||||||
<li style="display: inline-block;"><a style="text-decoration: none; color: #ff6600" href="#">СОБЫТИЯ</a></li> |
|
||||||
<li style="display: inline-block; margin-left: 20px;"><a style="text-decoration: none; color: #ff6600" href="#">МЕСТА</a></li> |
|
||||||
<li style="display: inline-block; margin-left: 20px;"><a style="text-decoration: none; color: #ff6600" href="#">УЧАСТНИКИ</a></li> |
|
||||||
</ul> |
|
||||||
</td> |
|
||||||
</tr> |
|
||||||
</table> |
|
||||||
|
|
||||||
<table cellpadding="0" cellspacing="0" border="0" width="600" style="width: 600px; font-size: 12px; line-height: 15px;"> |
|
||||||
<tr> |
|
||||||
<td style="vertical-align: top; padding: 15px 0 15px;"> |
|
||||||
Чтобы отписаться от этой рассылки, перейдите <a style="color: #ff6600;" href="#">по ссылке</a> |
|
||||||
</td> |
|
||||||
<td style="vertical-align: top; padding: 15px 0 15px; color: #a2a2a2; text-align: right;"> |
|
||||||
© 2018 — 2013 <a style="color: #a2a2a2; text-decoration: none;" href="#">Expomap.ru</a> |
|
||||||
</td> |
|
||||||
</tr> |
|
||||||
</table> |
|
||||||
|
|
||||||
</td> |
|
||||||
</tr> |
|
||||||
</table> |
|
||||||
</body> |
|
||||||
</html> |
|
||||||
@ -1,58 +0,0 @@ |
|||||||
{% load i18n %} |
|
||||||
|
|
||||||
<div id="pw-subscribe" class="popup-window pw-subscribe"> |
|
||||||
<header class="clearfix"> |
|
||||||
<div class="pw-title">{% trans 'Получать анонсы' %} </div> |
|
||||||
<ul class="tabs"> |
|
||||||
<li class="active"><a class="icon-big-email" href="#">{% trans 'по e-mail' %}</a></li> |
|
||||||
</ul> |
|
||||||
</header> |
|
||||||
<div class="pw-body clearfix"> |
|
||||||
<ul class="tabs-content"> |
|
||||||
<li class="active"> |
|
||||||
<form id="id_subscription_aside_form" class="pw-form simple-validate" action="/newsletters/subsribe/aside/" method="post">{% csrf_token %} |
|
||||||
|
|
||||||
<div class="pwf-line mail"> |
|
||||||
<div class="pwf-field">{{ announce_subscribe.email }}</div> |
|
||||||
<div class="pwf-msg"><a target="_blank" href="/newsletters/test-letter/">{% trans 'Пример рассылки' %}</a></div> |
|
||||||
</div> |
|
||||||
|
|
||||||
<div class="pwf-line country"> |
|
||||||
<div class="pwf-field"> |
|
||||||
{{ announce_subscribe.country }} |
|
||||||
</div> |
|
||||||
<div class="pwf-msg"></div> |
|
||||||
</div> |
|
||||||
|
|
||||||
<div class="pwf-line city"> |
|
||||||
<div class="pwf-field"> |
|
||||||
{{ announce_subscribe.city }} |
|
||||||
</div> |
|
||||||
<div class="pwf-msg"></div> |
|
||||||
</div> |
|
||||||
|
|
||||||
<div class="pwf-line subj"> |
|
||||||
<div class="pwf-field"> |
|
||||||
{{ announce_subscribe.theme }} |
|
||||||
</div> |
|
||||||
<div class="mf-msg"></div> |
|
||||||
</div> |
|
||||||
|
|
||||||
<div class="pwf-line subj"> |
|
||||||
<div class="pwf-field"> |
|
||||||
{{ announce_subscribe.periodic }} |
|
||||||
</div> |
|
||||||
<div class="mf-msg"></div> |
|
||||||
</div> |
|
||||||
|
|
||||||
<div class="pwf-buttons-line"> |
|
||||||
<button type="submit" class="icon-check">{% trans 'подписаться' %}</button> |
|
||||||
</div> |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</form> |
|
||||||
</li> |
|
||||||
</ul> |
|
||||||
</div> |
|
||||||
</div> |
|
||||||
Loading…
Reference in new issue