Fixes on frontend from production

remotes/origin/1203
Nazarii Kotiuk 10 years ago
parent e07b2dbe0c
commit a5c730d553
  1. 2
      conference/views.py
  2. 14
      meta/models.py
  3. 2
      proj/urls.py
  4. 4
      templates/client/accounts/translators/translator_city.html
  5. 4
      templates/client/accounts/translators/translator_country.html
  6. 7
      templates/client/accounts/user_events.html
  7. 5
      templates/client/base_catalog.html
  8. 202
      templates/client/base_page.html
  9. 6
      templates/client/city/city.html
  10. 8
      templates/client/country/country.html
  11. 8
      templates/client/exposition/exposition_list.html
  12. 3
      templates/client/exposition/visitors.html
  13. 2
      templates/client/includes/accounts/current_user.html
  14. 2
      templates/client/includes/accounts/simple_user.html
  15. 10
      templates/client/includes/article.back/article_logo.html
  16. 11
      templates/client/includes/article.back/article_on_main_preview.html
  17. 12
      templates/client/includes/article.back/article_preview.html
  18. 23
      templates/client/includes/article.back/blog_list.html
  19. 19
      templates/client/includes/article.back/catalog_filter_period.html
  20. 22
      templates/client/includes/article.back/news_list.html
  21. 10
      templates/client/includes/article.back/news_logo_in_catalog.html
  22. 10
      templates/client/includes/article.back/news_on_main.html
  23. 10
      templates/client/includes/article.back/news_on_main_logo.html
  24. 10
      templates/client/includes/article.back/news_on_main_logo.html.back
  25. 10
      templates/client/includes/article.back/news_preview.html
  26. 4
      templates/client/includes/article/article_logo.html
  27. 2
      templates/client/includes/article/news_logo_in_catalog.html
  28. 2
      templates/client/includes/article/news_on_main_logo.html
  29. 10
      templates/client/includes/article/news_on_main_logo.html.back
  30. 4
      templates/client/includes/article/news_preview.html
  31. 36
      templates/client/includes/banners/under_search.html
  32. 4
      templates/client/includes/booking_block.html
  33. 16
      templates/client/includes/catalog_search.html
  34. 16
      templates/client/includes/catalog_search_main.html
  35. 4
      templates/client/includes/company/company_object.html
  36. 20
      templates/client/includes/conference/conference_object.html
  37. 38
      templates/client/includes/conference/default_description.html
  38. 62
      templates/client/includes/exposition/default_description.html
  39. 306
      templates/client/includes/exposition/expo_list_paid.html
  40. 20
      templates/client/includes/exposition/expo_paid.html
  41. 20
      templates/client/includes/exposition/exposition_object.html
  42. 6
      templates/client/includes/exposition/price.html
  43. 6
      templates/client/includes/exposition/programm.html
  44. 3
      templates/client/includes/exposition/services.html
  45. 6
      templates/client/includes/exposition/statistic.html
  46. 6
      templates/client/includes/meta.html
  47. 14
      templates/client/includes/place/place_object.html
  48. 2
      templates/client/includes/place/place_services.html
  49. 2
      templates/client/index.html
  50. 4
      templates/client/newsletters/activation_complete.html
  51. 4
      templates/client/newsletters/activation_send.html
  52. 8
      templates/client/newsletters/unsubscribe_success.html
  53. 8
      templates/client/robots.txt
  54. 20
      templates/client/service/participation.html
  55. 7
      templates/client/service/remotely.html
  56. 6
      templates/client/service/tickets.html
  57. 6
      templates/client/service/tour.html
  58. 9
      templates/client/service/translator.html
  59. 2
      templates/client/simple_pages/yandex_check.html
  60. 6
      templates/client/specialist_catalog/catalog_detailed.html
  61. 18
      templates/client/static_client/html-cut/paid_exposition.html
  62. 20
      templates/client/static_client/html-cut/subscribe.html
  63. 960
      templates/client/static_client/subscribe_lending/css/all.css
  64. 54
      templates/client/static_client/subscribe_lending/js/jquery.main.js

@ -375,7 +375,7 @@ class ConferenceServiceView(FormMixin, DetailView):
return self.initial.copy()
class ConferenceDetail(JitterCacheMixin, DetailView):
class ConferenceDetail(JitterCacheMixin, MetadataMixin, DetailView):
cache_range = settings.CACHE_RANGE
model = Conference
slug_field = 'url'

@ -92,12 +92,18 @@ class MetaSetting(TranslatableModel):
if key in self.params:
updates.update(self.params[key](value, key))
params.update(updates)
# current translation object
tr = self.translations.get(language_code=lang)
title = tr.title.format(**params)
description = tr.description.format(**params)
keywords = []#tr.keywords.format(**params) uncoment if keywords need
h1 = tr.h1.format(**params)
title, description, h1 = '', '', ''
keywords = [] #tr.keywords.format(**params) uncoment if keywords need
try:
title = tr.title.format(**params)
description = tr.description.format(**params)
h1 = tr.h1.format(**params)
except:
pass
return {'title': title, 'description': description, 'keywords': keywords, 'h1': h1}

@ -38,7 +38,7 @@ urlpatterns = patterns('',
url(r'^sitemap\.xml$', views.index, {'sitemaps': sitemaps}),
url(r'^sitemap-(?P<section>.+)\.xml$', views.sitemap, {'sitemaps': sitemaps}),
url(r'^robots.txt$', Robot.as_view()),
url(r'^yandex_4c326c16c916403e.html$', YandexCheck.as_view()),
url(r'^yandex_4c45d77eb3f781f8.html$', YandexCheck.as_view()),
url(r'^$', MainPageView.as_view()),
url(r'^page/', include('core.simple_urls')),
url(r'^theme/', include('theme.urls')),

@ -27,7 +27,7 @@
<div class="i-info">
<header>
<div class="i-title">{{ object.name }}</div>
<h1 class="i-title">{{ object.name }}</h1>
</header>
<div class="i-descr">
@ -73,7 +73,7 @@
<div class="i-staff">
<div class="sect-title"><a href="/translators/city/{{ object.url }}/all/">{% trans 'Наши специалисты' %}</a></div>
<h2 class="sect-title"><a href="/translators/city/{{ object.url }}/all/">{% trans 'Наши специалисты' %}</a></h2>
<div class="i-staff-list">

@ -24,7 +24,7 @@
<div class="i-info">
<header>
<div class="i-title">{% trans 'Переводчики' %} {{ object.inflect }}</div>
<h1 class="i-title">{% trans 'Переводчики' %} {{ object.inflect }}</h1>
</header>
<div class="i-descr">
@ -108,7 +108,7 @@
<hr>
<div class="i-staff">
<div class="sect-title"><a href="/translators/country/{{ object.url }}/all/">{% trans 'Наши специалисты' %}</a></div>
<h2 class="sect-title"><a href="/translators/country/{{ object.url }}/all/">{% trans 'Наши специалисты' %}</a></h2>
<div class="i-staff-list">

@ -12,9 +12,10 @@
{% endblock %}
{% block page_title %}
<div class="page-title">
<h1>{{ event_type }}</h1>
</div>
<div class="page-title">
<h1>{% if meta %}{{ meta.h1 }}{% else %}{{ event_type }}{% endif %}</h1>
</div>
{% endblock %}
{% block content_list %}

@ -10,11 +10,12 @@
<div class="layout-wrap">
<aside>
<div class="sbg"></div>
{% include 'menu.html' %}
{% include 'client/includes/menu.html' %}
<hr/>
{% comment %}
{% include 'client/includes/feedback.html' %}
<hr />
{% endcomment %}
{# {% include 'client/includes/online_consult.html' %} #}

@ -1,101 +1,101 @@
{% extends 'blank.html' %}
{% load static %}
{% load i18n %}
{% load template_filters %}
{% block main_part %}
<section class="layout main-part">
<div class="layout-wrap">
<aside>
<div class="sbg"></div>
{% include 'menu.html' %}
<hr/>
{% include 'client/includes/feedback.html' %}
<hr />
{% include 'client/includes/online_consult.html' %}
{% block aside_banner1 %}
{% if theme_for_filter.id == 27 or theme_for_filter.id == 9 or theme_for_filter.id == 48 %}
<div class="sbnr">
<div class="sbnr-wrap">
<a href="/redirect/redirect/11/" target="_blank">
<img src="{% static 'client/img/partners/ipsa_.gif' %}" alt="" />
</a>
</div>
</div>
{% endif %}
{% endblock %}
{% include 'client/includes/services.html' %}
<hr />
{% include 'client/includes/announces.html' %}
{% block asside_banner2 %}
{% endblock %}
{% include 'client/includes/side_confs.html' %}
<hr />
<div class="s-news-list">
{% include 'client/includes/news.html' with news=news_list %}
</div>
{% block aside_vk %}
<div class="vk-widget">
{% include 'client/includes/social_widjet.html' %}
</div>
{% endblock %}
</aside>
<div class="mcl">
{% with search_form=search_form %}
{% include 'client/includes/catalog_search.html' %}
{% endwith %}
{% block under_search_baner %}
{% include 'client/includes/banners/under_search.html' %}
{% endblock %}
{% block bread_scrumbs %}
{% endblock %}
<div class="page-title">
{% block page_title %}
{% endblock %}
</div>
{% block page_filter %}
{% endblock %}
{% block page_body %}
<div class="page-body clearfix">
{% block content_list %}
{% endblock %}
{% block paginator %}
{% endblock %}
{% block content_footer_banner %}
{% endblock %}
</div>
{% block content_text %}
{% comment %}
{% with filter=filter %}
{% include 'includes/event_list_description.html' %}
{% endwith %}
{% endcomment %}
{% endblock %}
{% endblock %}
</div>
</div>
</section>
{% endblock %}
{% extends 'blank.html' %}
{% load static %}
{% load i18n %}
{% load template_filters %}
{% block main_part %}
<section class="layout main-part">
<div class="layout-wrap">
<aside>
<div class="sbg"></div>
{% include 'menu.html' %}
<hr/>
{% include 'client/includes/feedback.html' %}
<hr />
{% include 'client/includes/online_consult.html' %}
{% block aside_banner1 %}
{% if theme_for_filter.id == 27 or theme_for_filter.id == 9 or theme_for_filter.id == 48 %}
<div class="sbnr">
<div class="sbnr-wrap">
<a href="/redirect/redirect/11/" target="_blank">
<img src="{% static 'client/img/partners/ipsa_.gif' %}" alt="" />
</a>
</div>
</div>
{% endif %}
{% endblock %}
{% include 'client/includes/services.html' %}
<hr />
{% include 'client/includes/announces.html' %}
{% block asside_banner2 %}
{% endblock %}
{% include 'client/includes/side_confs.html' %}
<hr />
<div class="s-news-list">
{% include 'client/includes/news.html' with news=news_list %}
</div>
{% block aside_vk %}
<div class="vk-widget">
{% include 'client/includes/social_widjet.html' %}
</div>
{% endblock %}
</aside>
<div class="mcl">
{% with search_form=search_form %}
{% include 'client/includes/catalog_search.html' %}
{% endwith %}
{% block under_search_baner %}
{% include 'client/includes/banners/under_search.html' %}
{% endblock %}
{% block bread_scrumbs %}
{% endblock %}
<div class="page-title">
{% block page_title %}
{% endblock %}
</div>
{% block page_filter %}
{% endblock %}
{% block page_body %}
<div class="page-body clearfix">
{% block content_list %}
{% endblock %}
{% block paginator %}
{% endblock %}
{% block content_footer_banner %}
{% endblock %}
</div>
{% block content_text %}
{% comment %}
{% with filter=filter %}
{% include 'includes/event_list_description.html' %}
{% endwith %}
{% endcomment %}
{% endblock %}
{% endblock %}
</div>
</div>
</section>
{% endblock %}

@ -23,7 +23,7 @@
<div class="i-info">
<header>
<div class="i-title">{{ object.name }}</div>
<h1 class="i-title">{{ object.name }}</h1>
</header>
<table class="country_table">
@ -85,7 +85,7 @@
{% if object.description %}
<hr />
<div class="i-services country_content">
<div class="sect-title">Описание</div>
<h2 class="sect-title">Описание</h2>
<div class="i-descr">
{{ object.description }}
</div>
@ -94,7 +94,7 @@
{% if object.get_photos %}
<div class="i-photo-slides i-photo-slides_1">
<div class="sect-title">Фотогалерея</div>
<h2 class="sect-title">Фотогалерея</h2>
<div id="ps-photo-gallery" class="ps-photo-gallery swiper-container">
<ul class="swiper-wrapper">

@ -22,7 +22,7 @@
</aside>
<div class="i-info">
<header>
<div class="i-title">{{ object.name }}</div>
<h1 class="i-title">{{ object.name }}</h1>
</header>
<table class="country_table">
<tr>
@ -99,7 +99,7 @@
<hr />
{% if object.description %}
<div class="i-services country_content">
<div class="sect-title">{% trans 'Описание' %}</div>
<h2 class="sect-title">{% trans 'Описание' %}</h2>
<div class="i-descr">
{{ object.description }}
</div>
@ -107,7 +107,7 @@
{% endif %}
{% if object.get_photos %}
<div class="i-photo-slides">
<div class="sect-title">{% trans 'Фотогалерея' %}</div>
<h2 class="sect-title">{% trans 'Фотогалерея' %}</h2>
<div id="ps-photo-gallery" class="ps-photo-gallery swiper-container">
<ul class="swiper-wrapper">
@ -125,7 +125,7 @@
{% endif %}
{% if object.rules %}
<div class="i-services country_content">
<div class="sect-title">{% trans 'Визовая информация' %}</div>
<h2 class="sect-title">{% trans 'Визовая информация' %}</h2>
<div class="i-descr">
{{ object.rules }}
</div>

@ -1,4 +1,4 @@
{% extends 'base_catalog.html' %}
{% extends 'client/base_catalog.html' %}
{% load i18n %}
{% block bread_scrumbs %}
@ -25,14 +25,14 @@
<div class="page-title">
<h1>{% if meta %}{{ meta.h1 }}{% else %}{% trans 'Выставки' %}{% endif %}</h1>
</div>
{% include 'includes/exposition/catalog_filter_period.html' %}
{% include 'client/includes/exposition/catalog_filter_period.html' %}
{% endblock %}
{% block content_list %}
{% include 'includes/exposition/exposition_list.html' with object_list=object_list %}
{% include 'client/includes/exposition/exposition_list.html' with object_list=object_list %}
{% endblock %}
{% block paginator %}
{% include 'includes/catalog_paginator.html' with page_obj=page_obj %}
{% include 'client/includes/catalog_paginator.html' with page_obj=page_obj %}
{% endblock %}

@ -14,6 +14,9 @@
{% block page_title %}
<div class="page-title">
<h1>{% if meta %}{{ meta.h1 }}{% else %}{% trans 'Посетители' %}{% endif %}</h1>
</div>
{% endblock %}
{% block content_list %}

@ -459,7 +459,7 @@
avatarImageClass:'user-avatar',
noImageSrc:"{% static 'client/img/no-userpic-big.gif' %}",
addCompanyButtonId:'add-new-company',
companyAddInputMask:'http://expomap.ru/members/',
companyAddInputMask:'https://expomap.ru/members/',
avatarInputId:"id_avatar",
selectBox:[
{id:'id_country'},

@ -23,7 +23,7 @@
{% if member.profile.country %}{{ member.profile.country }},{% endif %}{% if member.profile.city %} {{ member.profile.city }}{% endif %}
</div>
{% endif %}
<div class="i-title">{{ member.get_full_name }}</div>
<h1 class="i-title">{{ member.get_full_name }}</h1>
</header>
<div class="i-position">{{ member.position }}

@ -0,0 +1,10 @@
{% load static %}
{% load thumbnail %}
{% if obj.logo %}
{% thumbnail obj.logo "100x100" format="PNG" as im %}
<img src="{{ im.url }}" width="{{ im.width }}" height="{{ im.height }}" class="pic" alt="">
{% endthumbnail %}
{% else %}
<img src="{% static 'client/img/no-logo.png' %}" class="pic" alt="" />
{% endif %}

@ -0,0 +1,11 @@
{% load static %}
{% load thumbnail %}
{% if obj.get_blog_preview %}
{% thumbnail obj.get_blog_preview.file_path "220x100" as im %}
<img src="{{ im.url }}" width="{{ im.width }}" height="{{ im.height }}" class="pic" alt="">
{% endthumbnail %}
{% else %}
<img src="{% static 'client/img/_del-temp/review-1.jpg' %}" class="pic" alt="" />
{% endif %}

@ -0,0 +1,12 @@
{% load static %}
{% load thumbnail %}
{% if obj.get_blog_preview %}
{% thumbnail obj.get_blog_preview2.file_path "250x180" as im %}
<img src="{{ im.url }}" width="{{ im.width }}" height="{{ im.height }}" class="pic" alt="">
{% endthumbnail %}
{% else %}
<div class="cli-pict">
<img src="{% static 'client/img/no-logo.png' %}" class="no-logo" alt="" />
</div>
{% endif %}

@ -0,0 +1,23 @@
<div class="rq-to-hide">
<div class="s-comments">
<div class="cat-list sc-comments">
{% for blog in object_list %}
<div class="cl-item">
<div class="acticle_list_big">
{% include 'includes/article/article_preview.html' with obj=blog %}
<h3><a href="{{ blog.get_permanent_url }}" title="">{{ blog.main_title }}</a></h3>
{{ blog.preview|safe }}
<strong><span>{{ blog.publish_date|date:"d E Y" }}</span>{% if blog.tag.all.exists %}{% include 'includes/article_tags.html' with obj=blog %}{% endif %}</strong>
</div>
</div>
{% if forloop.counter == 5 or objects|length < 5 %}
{% include 'client/includes/banners/catalog_inner_2.html' %}
{% endif %}
{% if forloop.counter == 10 %}
{% include 'client/includes/banners/catalog_inner.html' %}
{%endif %}
{% endfor %}
</div>
</div>
</div>

@ -0,0 +1,19 @@
{% load i18n %}
{% load template_filters %}
{% load tempalte_tags %}
{% if month or year %}
{% else %}
{% get_date_reverse %}
<div class="p-filter clearfix">
<div class="pf-body">
<div class="pf-label">{% trans 'Период' %}:</div>
{% with path=request.path|without_page now=now %}
{% for month in monthes_period %}
<a href="{{ path }}{{ month.date|date:'Y' }}/{{ month.month_url }}/">{{ month.name|lower }} {{ month.date|date:'Y' }}</a>{% if month != monthes_period|last %},{% endif %}
{% endfor %}
{% endwith %}
</div>
</div>
{% endif %}

@ -0,0 +1,22 @@
<div class="rq-to-hide">
<div class="cat-list sc-comments">
{% for news in object_list %}
<div class="cl-item">
<div class="acticle_list">
<a href="{{ news.get_permanent_url }}" title="">
{% include 'includes/article/news_preview.html' with obj=news %}</a>
<h3><a href="{{ news.get_permanent_url }}" title="">{{ news.main_title|safe }}</a></h3>
{{ news.preview|safe }}
<strong><span>{{ news.publish_date|date:"d E Y" }}</span>{% with event=news.get_event %}{% if event %}<a href="{{ event.get_permanent_url }}" title=""><b>{{ event.name }}</b></a>{% endif %}{% endwith %}</strong>
</div>
</div>
{% if forloop.counter == 5 or objects|length < 5 %}
{% include 'client/includes/banners/catalog_inner_2.html' %}
{% endif %}
{% if forloop.counter == 10 %}
{% include 'client/includes/banners/catalog_inner.html' %}
{%endif %}
{% endfor %}
</div>
</div>

@ -0,0 +1,10 @@
{% load static %}
{% load thumbnail %}
{% if obj.logo %}
{% thumbnail obj.logo "40x40" as im %}
<img src="{{ im.url }}" width="{{ im.width }}" height="{{ im.height }}" class="pic" alt="">
{% endthumbnail %}
{% else %}
<img src="{% static 'client/img/no-logo.png' %}" class="pic" alt="" />
{% endif %}

@ -0,0 +1,10 @@
{% load static %}
{% load thumbnail %}
{% if obj.logo %}
{% thumbnail obj.logo "80x80" as im %}
<img src="{{ im.url }}" width="{{ im.width }}" height="{{ im.height }}" class="pic" alt="">
{% endthumbnail %}
{% else %}
<img src="{% static 'client/img/no-logo.png' %}" class="pic" alt="" />
{% endif %}

@ -0,0 +1,10 @@
{% load static %}
{% load thumbnail %}
{% if obj.logo %}
{% thumbnail obj.logo "70x70" as im %}
<img src="{{ im.url }}" width="{{ im.width }}" height="{{ im.height }}" class="pic" alt="">
{% endthumbnail %}
{% else %}
<img src="{% static 'client/img/no-logo.png' %}" class="pic" alt="" />
{% endif %}

@ -0,0 +1,10 @@
{% load static %}
{% load thumbnail %}
{% if obj.logo %}
{% thumbnail obj.logo "70x70" format="PNG" as im %}
<img src="{{ im.url }}" width="{{ im.width }}" height="{{ im.height }}" class="pic" alt="">
{% endthumbnail %}
{% else %}
<img src="{% static 'client/img/no-logo.png' %}" class="pic" alt="" />
{% endif %}

@ -0,0 +1,10 @@
{% load static %}
{% load thumbnail %}
{% if obj.logo %}
{% thumbnail obj.logo "70x70" format="PNG" as im %}
<img src="{{ im.url }}" width="{{ im.width }}" height="{{ im.height }}" class="pic" alt="">
{% endthumbnail %}
{% else %}
<img src="{% static 'client/img/no-logo.png' %}" class="pic" alt="" />
{% endif %}

@ -2,9 +2,9 @@
{% load thumbnail %}
{% if obj.logo %}
{% thumbnail obj.logo "100x100" format="PNG" as im %}
{% thumbnail obj.logo "100x100" as im %}
<img src="{{ im.url }}" width="{{ im.width }}" height="{{ im.height }}" class="pic" alt="">
{% endthumbnail %}
{% else %}
<img src="{% static 'client/img/no-logo.png' %}" class="pic" alt="" />
{% endif %}
{% endif %}

@ -2,7 +2,7 @@
{% load thumbnail %}
{% if obj.logo %}
{% thumbnail obj.logo "40x40" format="PNG" as im %}
{% thumbnail obj.logo "40x40" as im %}
<img src="{{ im.url }}" width="{{ im.width }}" height="{{ im.height }}" class="pic" alt="">
{% endthumbnail %}
{% else %}

@ -2,7 +2,7 @@
{% load thumbnail %}
{% if obj.logo %}
{% thumbnail obj.logo "70x70" format="PNG" as im %}
{% thumbnail obj.logo "70x70" as im %}
<img src="{{ im.url }}" width="{{ im.width }}" height="{{ im.height }}" class="pic" alt="">
{% endthumbnail %}
{% else %}

@ -0,0 +1,10 @@
{% load static %}
{% load thumbnail %}
{% if obj.logo %}
{% thumbnail obj.logo "70x70" format="PNG" as im %}
<img src="{{ im.url }}" width="{{ im.width }}" height="{{ im.height }}" class="pic" alt="">
{% endthumbnail %}
{% else %}
<img src="{% static 'client/img/no-logo.png' %}" class="pic" alt="" />
{% endif %}

@ -2,9 +2,9 @@
{% load thumbnail %}
{% if obj.logo %}
{% thumbnail obj.logo "70x70" format="PNG" as im %}
{% thumbnail obj.logo "70x70" as im %}
<img src="{{ im.url }}" width="{{ im.width }}" height="{{ im.height }}" class="pic" alt="">
{% endthumbnail %}
{% else %}
<img src="{% static 'client/img/no-logo.png' %}" class="pic" alt="" />
{% endif %}
{% endif %}

@ -1,19 +1,19 @@
{% load static %}
{% load template_filters %}
<div class="abn">
{% with r=False|random4 %}
{% ifequal r 0 %}
<a target="_blank" href="/redirect/redirect/57/"><img src="{% static 'client/img/partners/cemat15_900x130_bilet.gif' %}" alt="" /></a>
{% endifequal %}
{% ifequal r 1 %}
<a target="_blank" href="/redirect/redirect/58/"><img src="{% static 'client/img/partners/beach.png' %}" alt="" /></a>
{% endifequal %}
{% ifequal r 2 %}
<a target="_blank" href="/redirect/redirect/59/"><img src="{% static 'client/img/partners/mims15_900x130_bilet.gif' %}" alt="" /></a>
{% endifequal %}
{% ifequal r 3 %}
<a target="_blank" href="/redirect/redirect/61/"><img src="{% static 'client/img/partners/IPSA_2015_web_900x130.gif' %}" alt="" /></a>
{% endifequal %}
{% endwith %}
{% load static %}
{% load template_filters %}
<div class="abn">
{% with r=False|random4 %}
{% ifequal r 0 %}
<a target="_blank" href="/redirect/redirect/57/"><img src="{% static 'client/img/partners/cemat15_900x130_bilet.gif' %}" alt="" /></a>
{% endifequal %}
{% ifequal r 1 %}
<a target="_blank" href="/redirect/redirect/58/"><img src="{% static 'client/img/partners/beach.png' %}" alt="" /></a>
{% endifequal %}
{% ifequal r 2 %}
<a target="_blank" href="/redirect/redirect/59/"><img src="{% static 'client/img/partners/mims15_900x130_bilet.gif' %}" alt="" /></a>
{% endifequal %}
{% ifequal r 3 %}
<a target="_blank" href="/redirect/redirect/61/"><img src="{% static 'client/img/partners/IPSA_2015_web_900x130.gif' %}" alt="" /></a>
{% endifequal %}
{% endwith %}
</div>

@ -7,9 +7,9 @@
<div class="h-booking">
<header class="clearfix">
<div class="sect-title">
<h2 class="sect-title">
<a target="_blank" href="http://www.booking.com/searchresults.html?aid={{ book_aid }}&city={{ city.id }}{% if event %}&checkin_monthday={{ event.data_begin|date:'j' }}&checkin_year_month={{ event.data_begin|date:'Y' }}-{{ event.data_begin|date:'n' }}&checkout_monthday={{ event.data_end|date:'j' }}&checkout_year_month={{ event.data_end|date:'Y' }}-{{ event.data_end|date:'n' }}{% endif %}">{% trans 'Отели рядом с выставкой от' %} <b>Booking</b>.com</a>
</div>
</h2>
<a class="more blue2" target="_blank" href="http://www.booking.com/searchresults.html?aid={{ book_aid }}&city={{ city.id }}{% if event %}&checkin_monthday={{ event.data_begin|date:'j' }}&checkin_year_month={{ event.data_begin|date:'Y' }}-{{ event.data_begin|date:'n' }}&checkout_monthday={{ event.data_end|date:'j' }}&checkout_year_month={{ event.data_end|date:'Y' }}-{{ event.data_end|date:'n' }}{% endif %}">{% trans 'Все отели поблизости' %}</a>
</header>
<ul>

@ -118,9 +118,9 @@
place:{
id:'pwPlace',
selectedItemTemplate:'csb-selected',
ajaxUrl:'http://{{ request.get_host }}/search-form/',
autoCompleteUrl:'http://{{ request.get_host }}/search-form/autocomplete/',
getParentUrl:'http://{{ request.get_host }}/search-form/get-parent/',
ajaxUrl:'https://{{ request.get_host }}/search-form/',
autoCompleteUrl:'https://{{ request.get_host }}/search-form/autocomplete/',
getParentUrl:'https://{{ request.get_host }}/search-form/get-parent/',
autoCompleteId:'filter-complete-block',
filterInputId:'place-filter-input',
modalTrigger:'place-modal-trigger',
@ -133,11 +133,11 @@
id:'pwSubj',
selectedItemTemplate:'csb-subj-selected',
autoCompleteId:'subj-filter-complete-block',
ajaxUrl:'http://{{ request.get_host }}/search-form/',
autoCompleteUrl:'http://{{ request.get_host }}/search-form/autocomplete/',
ajaxUrl:'https://{{ request.get_host }}/search-form/',
autoCompleteUrl:'https://{{ request.get_host }}/search-form/autocomplete/',
filterInputId:'subj-fliter-input',
modalTrigger:'subj-modal-trigger',
getParentUrl:'http://{{ request.get_host }}/search-form/get-parent/',
getParentUrl:'https://{{ request.get_host }}/search-form/get-parent/',
selectedItemsContainer:'csb-subj-selected-items',
subjectTriggerWrapId:'subj-checks',
defaultOn:['exhibition-check','conference-check'],
@ -155,14 +155,14 @@
},
firstField:{
id:'id_q',
autoCompleteUrl:'http://{{ request.get_host }}{{ search_form.autocomplete_url }}',
autoCompleteUrl:'https://{{ request.get_host }}{{ search_form.autocomplete_url }}',
autoCompleteWrapId:'q-field-complete-wrap',
prefix:'tid_',
prefixInner:'tgid_'
},
placeField:{
id:'id_w',
autoCompleteUrl:'http://{{ request.get_host }}/search-form/autocomplete/',
autoCompleteUrl:'https://{{ request.get_host }}/search-form/autocomplete/',
autoCompleteWrapId:'w-field-complete-wrap',
prefix:'id_'
},

@ -128,9 +128,9 @@
place:{
id:'pwPlace',
selectedItemTemplate:'csb-selected',
ajaxUrl:'http://{{ request.get_host }}/search-form/',
autoCompleteUrl:'http://{{ request.get_host }}/search-form/autocomplete/',
getParentUrl:'http://{{ request.get_host }}/search-form/get-parent/',
ajaxUrl:'https://{{ request.get_host }}/search-form/',
autoCompleteUrl:'https://{{ request.get_host }}/search-form/autocomplete/',
getParentUrl:'https://{{ request.get_host }}/search-form/get-parent/',
autoCompleteId:'filter-complete-block',
filterInputId:'place-filter-input',
modalTrigger:'place-modal-trigger',
@ -142,11 +142,11 @@
id:'pwSubj',
selectedItemTemplate:'csb-subj-selected',
autoCompleteId:'subj-filter-complete-block',
ajaxUrl:'http://{{ request.get_host }}/search-form/',
autoCompleteUrl:'http://{{ request.get_host }}/search-form/autocomplete/',
ajaxUrl:'https://{{ request.get_host }}/search-form/',
autoCompleteUrl:'https://{{ request.get_host }}/search-form/autocomplete/',
filterInputId:'subj-fliter-input',
modalTrigger:'subj-modal-trigger',
getParentUrl:'http://{{ request.get_host }}/search-form/get-parent/',
getParentUrl:'https://{{ request.get_host }}/search-form/get-parent/',
selectedItemsContainer:'csb-subj-selected-items',
subjectTriggerWrapId:'subj-checks',
defaultOn:['exhibition-check','conference-check'],
@ -163,14 +163,14 @@
},
firstField:{
id:'id_q',
autoCompleteUrl:'http://{{ request.get_host }}{{ search_form.autocomplete_url }}',
autoCompleteUrl:'https://{{ request.get_host }}{{ search_form.autocomplete_url }}',
autoCompleteWrapId:'q-field-complete-wrap',
prefix:'tid_',
prefixInner:'tgid_'
},
placeField:{
id:'id_w',
autoCompleteUrl:'http://{{ request.get_host }}/search-form/autocomplete/',
autoCompleteUrl:'https://{{ request.get_host }}/search-form/autocomplete/',
autoCompleteWrapId:'w-field-complete-wrap',
prefix:'id_'
},

@ -21,7 +21,7 @@
</aside>
<div class="i-info">
<header>
<div class="i-title">{{ company.name|safe }}</div>
<h1 class="i-title">{{ company.name|safe }}</h1>
<div class="i-place p-editable editable-wrap ">
<span class="static-value">
{{ company.country.name }}, {{ company.city.name }}
@ -222,7 +222,7 @@
{% endif %}
{% if company.users.all|length > 0 %}
<div class="i-staff">
<div class="sect-title">{% trans 'Сотрудники' %}</div>
<h2 class="sect-title">{% trans 'Сотрудники' %}</h2>
<div class="i-staff-list">
<ul>

@ -34,13 +34,13 @@
</aside>
<div class="i-info">
<header>
<div class="i-title">
<h1 class="i-title">
{% if event.main_title %}
{{ event.main_title|safe }} {{ event.name|safe }}
{% else %}
{{ event.name|safe }}
{% endif %}
</div>
</h1>
</header>
<div class="i-date">
{% with obj=event %}
@ -124,7 +124,7 @@
{% with photos=event.get_photos|slice:"5" %}
<hr />
<div class="i-photo-slides">
<div class="sect-title"><a href="#">{% trans 'Фотографии с прошлой конференции' %}</a></div>
<h2 class="sect-title"><a href="#">{% trans 'Фотографии с прошлой конференции' %}</a></h2>
<div id="ps-photo-gallery" class="ps-photo-gallery swiper-container">
<ul class="swiper-wrapper">
{% for photo in photos %}
@ -142,7 +142,7 @@
{% endwith %}
{% endif %}
<div class="i-event-description">
<div class="ied-title">{% if event.event_type == 'expo' %}{% trans 'О выставке' %}{% else %}{% trans 'О конференции' %}{% endif %} {{ event.name|safe }}</div>
<h2 class="ied-title">{% if event.event_type == 'expo' %}{% trans 'О выставке' %}{% else %}{% trans 'О конференции' %}{% endif %} {{ event.name|safe }}</h2>
{% if event.description %}
<div class="ied-text">{{ event.description|safe|linebreaks }}</div>
{% else %}
@ -151,7 +151,7 @@
</div>
<hr />
<div class="i-event-additional clearfix">
<div class="sect-title">{% trans 'Дополнительная информация' %}</div>
<h2 class="sect-title">{% trans 'Дополнительная информация' %}</h2>
<ul class="e-docs">
{% if event.business_program.exists %}
<li><a href="{{ event.get_permanent_url }}program/">{% trans 'Деловая программа' %}</a></li>
@ -217,7 +217,7 @@
{% if companies %}
{# есть участники #}
<header>
<div class="im-title">{% trans 'Спикеры' %}</div>
<h2 class="im-title">{% trans 'Спикеры' %}</h2>
<a class="more" href="{{ event.get_permanent_url }}members/">{% trans 'Все спикеры' %}</a>
</header>
<ul>
@ -238,7 +238,7 @@
{% else %}
{# нет участников #}
<header>
<div class="im-title">{% trans 'Спикеры' %}</div>
<h2 class="im-title">{% trans 'Спикеры' %}</h2>
<p>{% trans 'Разместите информацию о ключевых спикерах' %}</p>
<p><a href="#pw-advertise" class="button icon-up pw-open" >{% trans 'Рекламировать спикера' %}</a></p>
</header>
@ -249,7 +249,7 @@
<div class="im-visitors">
{% with visitors=event.users.all|slice:":17" %}
<header>
<div class="im-title">{% trans 'Посетители' %}</div>
<h2 class="im-title">{% trans 'Посетители' %}</h2>
</header>
<ul id="visitors-list">
{% if visitors %}
@ -292,7 +292,7 @@
<hr />
{% if event.get_nearest_events|slice:":6" %}
<div class="e-cat">
<div class="sect-title">{% trans 'Ближайшие выставки по тематике' %} <a href="{{ expo_catalog }}theme/{{ event.theme.all.0.url }}">«{{ event.theme.all.0 }}»</a></div>
<h2 class="sect-title">{% trans 'Ближайшие выставки по тематике' %} <a href="{{ expo_catalog }}theme/{{ event.theme.all.0.url }}">«{{ event.theme.all.0 }}»</a></h2>
<ul class="cat-list cl-exhibitions">
{% for exp in event.get_nearest_events %}
<li class="cl-item">
@ -352,7 +352,7 @@
{% endif %}
{% include 'client/includes/banners/detail_inner_3.html' %}
<div class="e-cat look-also">
<div class="sect-title">{% trans 'Смотрите также:' %}</div>
<h2 class="sect-title">{% trans 'Смотрите также:' %}</h2>
<a href="{{ event.catalog }}city/{{ event.city.url }}/">{% trans "Конференции" %} {% if request.LANGUAGE_CODE == 'ru' and event.city.inflect %}{{ event.city.inflect }}{% else %}{% trans 'in' %} {{ event.city.name }}{% endif %}</a>
<a href="{{ event.catalog }}country/{{ event.country.url }}/">{% trans "Конференции" %} {% if request.LANGUAGE_CODE == 'ru' and event.country.inflect %}{{ event.country.inflect }}{% else %}{% trans 'in' %} {{ event.country.name }}{% endif %}</a>
<a href="{{ event.catalog }}theme/{{ event.theme.all.0.url }}/country/{{ event.country.url }}/">{% trans "Конференции по тематике " %}&laquo;{{ event.theme.all.0.name|lower }}&raquo; {% if request.LANGUAGE_CODE == 'ru' and event.country.inflect %}{{ event.country.inflect }}{% else %}{% trans 'in' %} {{ event.country.name }}{% endif %}</a>

@ -1,20 +1,20 @@
{% load i18n %}
<div class="ied-text" style="text-align: justify">
{% blocktrans with name=conf.name%}
<p>Конференция {{name}} проходит {% endblocktrans %}{% include 'client/includes/show_date_block.html' with obj=conf %}
{% blocktrans with city=conf.city.name country=conf.country.name name=conf.name id=conf.city.id code=request.LANGUAGE_CODE date1=conf.data_begin|date:'j' date2=conf.data_begin|date:'Y' date3=conf.data_begin|date:'n' date4=conf.data_end|date:'j' date5=conf.data_end|date:'Y' date6=conf.data_end|date:'n' %}
в городе {{city}}, {{country}}.
Посмотреть, как проехать в место проведения конференции, можно на сайте конгрессной площадки.
Деловая программа {{name}} разбита на секции по дням и размещается на сайте мероприятия с подробным списком
докладчиков конференции. Спикеров конференции {{name}} обычно окончательно утверждают за 1-2 месяца до начала конференции.</p>
<h3>Ваши деловые контакты на {{name}} </h3>
<p class="text-indent-1-5em">Добавьте конференцию {{name}} в расписание, чтобы не потерять важное событие,
где встречаются профессионалы нужной Вам отрасли. Создавайте свое расписание мероприятий.</p>
<h3>Планируете самостоятельную поездку на {{name}} ? </h3>
<p class="text-indent-1-5em">Если Вам требуется размещение, мы рекомендуем посмотреть отели и цены в период проведения конференции <a href="http://www.booking.com/searchresults.html?aid=333667&city={{ id }}&do_availability_check=on&label=conf_search&lang={{ code }}&checkin_monthday={{ date1 }}&checkin_year_month={{ date2 }}-{{ date3 }}&checkout_monthday={{ date4 }}&checkout_year_month={{ date5 }}-{{ date6 }}">здесь</a>.
Не забудьте проверить место и даты конференции на официальном сайте и в календаре организатора. Событие могут перенести,
отменить, объединить с проектом схожей тематики. Expomap не несет ответственности за неточности
предоставляемой информации.</p>
Есть вопрос по участию в {{name}} ? Ответим по тел. <b>+7 (499) 999-12-07</b>
{% endblocktrans %}
{% load i18n %}
<div class="ied-text" style="text-align: justify">
{% blocktrans with name=conf.name%}
<p>Конференция {{name}} проходит {% endblocktrans %}{% include 'client/includes/show_date_block.html' with obj=conf %}
{% blocktrans with city=conf.city.name country=conf.country.name name=conf.name id=conf.city.id code=request.LANGUAGE_CODE date1=conf.data_begin|date:'j' date2=conf.data_begin|date:'Y' date3=conf.data_begin|date:'n' date4=conf.data_end|date:'j' date5=conf.data_end|date:'Y' date6=conf.data_end|date:'n' %}
в городе {{city}}, {{country}}.
Посмотреть, как проехать в место проведения конференции, можно на сайте конгрессной площадки.
Деловая программа {{name}} разбита на секции по дням и размещается на сайте мероприятия с подробным списком
докладчиков конференции. Спикеров конференции {{name}} обычно окончательно утверждают за 1-2 месяца до начала конференции.</p>
<h3>Ваши деловые контакты на {{name}} </h3>
<p class="text-indent-1-5em">Добавьте конференцию {{name}} в расписание, чтобы не потерять важное событие,
где встречаются профессионалы нужной Вам отрасли. Создавайте свое расписание мероприятий.</p>
<h3>Планируете самостоятельную поездку на {{name}} ? </h3>
<p class="text-indent-1-5em">Если Вам требуется размещение, мы рекомендуем посмотреть отели и цены в период проведения конференции <a href="http://www.booking.com/searchresults.html?aid=333667&city={{ id }}&do_availability_check=on&label=conf_search&lang={{ code }}&checkin_monthday={{ date1 }}&checkin_year_month={{ date2 }}-{{ date3 }}&checkout_monthday={{ date4 }}&checkout_year_month={{ date5 }}-{{ date6 }}">здесь</a>.
Не забудьте проверить место и даты конференции на официальном сайте и в календаре организатора. Событие могут перенести,
отменить, объединить с проектом схожей тематики. Expomap не несет ответственности за неточности
предоставляемой информации.</p>
Есть вопрос по участию в {{name}} ? Ответим по тел. <b>+7 (499) 999-12-07</b>
{% endblocktrans %}
</div>

@ -1,32 +1,32 @@
{% load i18n %}
<div class="ied-text" style="text-align: justify">
{% blocktrans with name=expo.name %}
<p>Выставка {{ name }} проводится{% endblocktrans %}
{% include 'client/includes/show_date_block.html' with obj=expo %}
{% blocktrans with city=expo.city.name country=expo.country.name %} в городе {{ city }}, {{ country }}.</p>{% endblocktrans %}
{% blocktrans with name=expo.name id=expo.city.id code=request.LANGUAGE_CODE date1=expo.data_begin|date:'j' date2=expo.data_begin|date:'Y' date3=expo.data_begin|date:'n' date4=expo.data_end|date:'j' date5=expo.data_end|date:'Y' date6=expo.data_end|date:'n' %}
<p>Экспонируемые продукты и разделы выставки Вы можете посмотреть ниже, в блоке
<a href="#additional">«Дополнительная информация».</a>
Полный список участников {{ name }} размещается на официальном сайте выставки и постоянно обновляется.
Там же Вы сможете найти экспонентов предыдущего года. Деловая программа {{ name }} обычно публикуется ближе к
началу события.</p>
<h3>Ваш личный календарь</h3>
<p class="text-indent-1-5em">Добавьте выставку {{ name }} в <a href="/profile/calendar/">календарь</a>, чтобы не
потерять важное событие. Создавайте свое расписание мероприятий.</p>
<h3>Планируете самостоятельную поездку на {{ name }}?</h3>
<p class="text-indent-1-5em">Мы рекомендуем посмотреть отели и цены в период проведения выставки
<a href="http://www.booking.com/searchresults.html?aid=333667&city={{ id }}&do_availability_check=on&label=expo_search&lang={{ code }}&checkin_monthday={{ date1 }}&checkin_year_month={{ date2 }}-{{ date3 }}&checkout_monthday={{ date4 }}&checkout_year_month={{ date5 }}-{{ date6 }}">здесь</a>.
{% endblocktrans %}{% if expo.place %}
{% blocktrans with name=expo.place.name url=expo.place.url %}Как добраться до выставочного центра {{ name }} можно
посмотреть
<a href="/places/{{ url }}/">здесь</a>.{% endblocktrans %}
{% endif %}
{% blocktrans with name=expo.name %}
Не забудьте проверить место и даты выставки на официальном сайте и в календаре выставочного комплекса.
Событие могут перенести, отменить, объединить с проектом схожей тематики.
Expomap не несет ответственности за неточности предоставляемой информации.</p>
Есть вопрос о посещении или участии в {{ name }}? Ответим по тел. <b>+7 (499) 999-12-07</b>
{% endblocktrans %}
{% load i18n %}
<div class="ied-text" style="text-align: justify">
{% blocktrans with name=expo.name %}
<p>Выставка {{ name }} проводится{% endblocktrans %}
{% include 'client/includes/show_date_block.html' with obj=expo %}
{% blocktrans with city=expo.city.name country=expo.country.name %} в городе {{ city }}, {{ country }}.</p>{% endblocktrans %}
{% blocktrans with name=expo.name id=expo.city.id code=request.LANGUAGE_CODE date1=expo.data_begin|date:'j' date2=expo.data_begin|date:'Y' date3=expo.data_begin|date:'n' date4=expo.data_end|date:'j' date5=expo.data_end|date:'Y' date6=expo.data_end|date:'n' %}
<p>Экспонируемые продукты и разделы выставки Вы можете посмотреть ниже, в блоке
<a href="#additional">«Дополнительная информация».</a>
Полный список участников {{ name }} размещается на официальном сайте выставки и постоянно обновляется.
Там же Вы сможете найти экспонентов предыдущего года. Деловая программа {{ name }} обычно публикуется ближе к
началу события.</p>
<h3>Ваш личный календарь</h3>
<p class="text-indent-1-5em">Добавьте выставку {{ name }} в <a href="/profile/calendar/">календарь</a>, чтобы не
потерять важное событие. Создавайте свое расписание мероприятий.</p>
<h3>Планируете самостоятельную поездку на {{ name }}?</h3>
<p class="text-indent-1-5em">Мы рекомендуем посмотреть отели и цены в период проведения выставки
<a href="http://www.booking.com/searchresults.html?aid=333667&city={{ id }}&do_availability_check=on&label=expo_search&lang={{ code }}&checkin_monthday={{ date1 }}&checkin_year_month={{ date2 }}-{{ date3 }}&checkout_monthday={{ date4 }}&checkout_year_month={{ date5 }}-{{ date6 }}">здесь</a>.
{% endblocktrans %}{% if expo.place %}
{% blocktrans with name=expo.place.name url=expo.place.url %}Как добраться до выставочного центра {{ name }} можно
посмотреть
<a href="/places/{{ url }}/">здесь</a>.{% endblocktrans %}
{% endif %}
{% blocktrans with name=expo.name %}
Не забудьте проверить место и даты выставки на официальном сайте и в календаре выставочного комплекса.
Событие могут перенести, отменить, объединить с проектом схожей тематики.
Expomap не несет ответственности за неточности предоставляемой информации.</p>
Есть вопрос о посещении или участии в {{ name }}? Ответим по тел. <b>+7 (499) 999-12-07</b>
{% endblocktrans %}
</div>

@ -1,154 +1,154 @@
{% load static %}
{% load i18n %}
{% load template_filters %}
{% with objects=object_list %}
{% if objects %}
<ul class="cat-list cl-exhibitions">
{% for obj in objects %}
<li class="cl-item {% if obj.canceled %}canceled{% endif %}">
<div class="cl-item-wrap clearfix">
<a href="{{ obj.get_permanent_url }}">
{% if obj.canceled %}
<div class="cancel"></div>
{% else %}
{% if obj.expohit %}
<div class="hit"></div>
{% endif %}
{% endif %}
<div class="cli-pict">
{% with obj=obj %}
{% include 'client/includes/show_logo.html' %}
{% endwith %}
</div>
</a>
<div class="cli-info">
<div class="cli-top clearfix">
{% if obj.quality_label.ufi.is_set %}
<div class="cli-approved">
<img src="{% static 'client/img/approved-logo.png' %}" alt="" title="Approved Event" />
</div>
{% endif %}
<header>
<div class="cli-title"><a href="{{ obj.get_permanent_url }}">{{ obj.name|safe }}</a></div>
</header>
<div class="cli-descr">
{{ obj.main_title|safe }}
</div>
</div>
<div class="cli-bot clearfix">
<div class="cli-date">
{% with obj=obj %}
{% include 'client/includes/show_date_block.html' %}
{% endwith %}
</div>
{% if obj.country %}
<div class="cli-place">
<a href="{{ obj.catalog }}country/{{ obj.country.url }}/">{{ obj.country }}</a>, <a href="{{ obj.catalog }}city/{{ obj.city.url }}/">{{ obj.city }}</a>
{% if obj.place %}
, <a href="/places/{{ obj.place.url }}/">{{ obj.place }}</a>
{% endif %}
</div>
{% endif %}
</div>
</div>
<div class="cli-buttons clearfix">
<div class="cli-m-buttons">
{% include 'client/includes/exposition/services.html' with obj=obj %}
{% include 'client/includes/calendar_button.html' with obj=obj%}
<div class="{% if request.user.is_authenticated%}note-wrap{% else %}note-wrap-disabled{% endif %}">
{% with note=obj|note_by_user:request.user %}
<a class="button green icon-note {% if note %}active{% endif %} note-button" href="/expo/add-note/{{ obj.url }}/">{% trans 'заметка' %}</a>
<div class="note-overlay">
<form action="">
<textarea name="note_text" class="note-text"> {{ note }}</textarea>
</form>
</div>
{% endwith %}
</div>
{% if request.user.is_admin %}
<div class="note-wrap">
<a class="button green " href="/admin/exposition/{{ obj.url }}/">{% trans 'изменить' %}</a>
</div>
{% endif %}
<div></div>
</div>
<div class="cli-s-buttons">
{% include 'client/buttons/booking_button.html' with object=obj %}
</div>
</div>
</div>
<footer class="clearfix">
<div class="cli-stats">
{% if obj.visitors %}
<span class="visitors" title="Посетители">{{ obj.visitors }}</span>
{% endif %}
{% if obj.members %}
<span class="participants" title="Участники">{{ obj.members }}</span>
{% endif %}
</div>
<div class="cli-tags">
{% include 'client/includes/exposition/tags.html' with obj=obj %}
</div>
</footer>
</li>
{% if forloop.counter == 8 %}
<!-- Яндекс.Директ -->
<script type="text/javascript">
yandex_partner_id = 58151;
yandex_site_bg_color = 'FFFFFF';
yandex_ad_format = 'direct';
yandex_font_size = 1;
yandex_direct_type = 'horizontal';
yandex_direct_border_type = 'block';
yandex_direct_limit = 3;
yandex_direct_title_font_size = 3;
yandex_direct_border_radius = true;
yandex_direct_links_underline = false;
yandex_direct_header_bg_color = 'FEEAC7';
yandex_direct_bg_color = 'FFF9F0';
yandex_direct_border_color = 'FBE5C0';
yandex_direct_title_color = '666666';
yandex_direct_url_color = '000000';
yandex_direct_text_color = '000000';
yandex_direct_hover_color = 'FF3333';
yandex_direct_sitelinks_color = '666666';
yandex_direct_favicon = false;
yandex_no_sitelinks = false;
document.write('<scr'+'ipt type="text/javascript" src="//an.yandex.ru/system/context.js"></scr'+'ipt>');
</script>
{%endif %}
{% endfor %}
</ul>
{% else %}
<p class="message-not-found">
<span class="message">
{% trans "Выставки по указанным параметрам не найдены. Попробуйте задать менее точный запрос по теме или расширить период времени" %}
</span>
</p>
{% endif %}
{% endwith %}
{% block scripts %}
{% if request.GET.debug == '1' %}
<script src="{% static 'client/js/_modules/block.exposition.list.js' %}"></script>
{% else %}
<script src="{% static 'client/js_min/_modules/block.exposition.list.min.js' %}"></script>
{% endif %}<script>
EXPO.exposition.list.init({
note:{
wrapClass:'note-wrap',
wrapDisabledClass:'note-wrap-disabled',
buttonClass:'note-button',
inputClass:'note-text'
},
addCalendarText:"{% trans 'В расписание' %}",
removeCalendarText:"{% trans 'Из расписания' %}"
});
</script>
{% load static %}
{% load i18n %}
{% load template_filters %}
{% with objects=object_list %}
{% if objects %}
<ul class="cat-list cl-exhibitions">
{% for obj in objects %}
<li class="cl-item {% if obj.canceled %}canceled{% endif %}">
<div class="cl-item-wrap clearfix">
<a href="{{ obj.get_permanent_url }}">
{% if obj.canceled %}
<div class="cancel"></div>
{% else %}
{% if obj.expohit %}
<div class="hit"></div>
{% endif %}
{% endif %}
<div class="cli-pict">
{% with obj=obj %}
{% include 'client/includes/show_logo.html' %}
{% endwith %}
</div>
</a>
<div class="cli-info">
<div class="cli-top clearfix">
{% if obj.quality_label.ufi.is_set %}
<div class="cli-approved">
<img src="{% static 'client/img/approved-logo.png' %}" alt="" title="Approved Event" />
</div>
{% endif %}
<header>
<div class="cli-title"><a href="{{ obj.get_permanent_url }}">{{ obj.name|safe }}</a></div>
</header>
<div class="cli-descr">
{{ obj.main_title|safe }}
</div>
</div>
<div class="cli-bot clearfix">
<div class="cli-date">
{% with obj=obj %}
{% include 'client/includes/show_date_block.html' %}
{% endwith %}
</div>
{% if obj.country %}
<div class="cli-place">
<a href="{{ obj.catalog }}country/{{ obj.country.url }}/">{{ obj.country }}</a>, <a href="{{ obj.catalog }}city/{{ obj.city.url }}/">{{ obj.city }}</a>
{% if obj.place %}
, <a href="/places/{{ obj.place.url }}/">{{ obj.place }}</a>
{% endif %}
</div>
{% endif %}
</div>
</div>
<div class="cli-buttons clearfix">
<div class="cli-m-buttons">
{% include 'client/includes/exposition/services.html' with obj=obj %}
{% include 'client/includes/calendar_button.html' with obj=obj%}
<div class="{% if request.user.is_authenticated%}note-wrap{% else %}note-wrap-disabled{% endif %}">
{% with note=obj|note_by_user:request.user %}
<a class="button green icon-note {% if note %}active{% endif %} note-button" href="/expo/add-note/{{ obj.url }}/">{% trans 'заметка' %}</a>
<div class="note-overlay">
<form action="">
<textarea name="note_text" class="note-text"> {{ note }}</textarea>
</form>
</div>
{% endwith %}
</div>
{% if request.user.is_admin %}
<div class="note-wrap">
<a class="button green " href="/admin/exposition/{{ obj.url }}/">{% trans 'изменить' %}</a>
</div>
{% endif %}
<div></div>
</div>
<div class="cli-s-buttons">
{% include 'client/buttons/booking_button.html' with object=obj %}
</div>
</div>
</div>
<footer class="clearfix">
<div class="cli-stats">
{% if obj.visitors %}
<span class="visitors" title="Посетители">{{ obj.visitors }}</span>
{% endif %}
{% if obj.members %}
<span class="participants" title="Участники">{{ obj.members }}</span>
{% endif %}
</div>
<div class="cli-tags">
{% include 'client/includes/exposition/tags.html' with obj=obj %}
</div>
</footer>
</li>
{% if forloop.counter == 8 %}
<!-- Яндекс.Директ -->
<script type="text/javascript">
yandex_partner_id = 58151;
yandex_site_bg_color = 'FFFFFF';
yandex_ad_format = 'direct';
yandex_font_size = 1;
yandex_direct_type = 'horizontal';
yandex_direct_border_type = 'block';
yandex_direct_limit = 3;
yandex_direct_title_font_size = 3;
yandex_direct_border_radius = true;
yandex_direct_links_underline = false;
yandex_direct_header_bg_color = 'FEEAC7';
yandex_direct_bg_color = 'FFF9F0';
yandex_direct_border_color = 'FBE5C0';
yandex_direct_title_color = '666666';
yandex_direct_url_color = '000000';
yandex_direct_text_color = '000000';
yandex_direct_hover_color = 'FF3333';
yandex_direct_sitelinks_color = '666666';
yandex_direct_favicon = false;
yandex_no_sitelinks = false;
document.write('<scr'+'ipt type="text/javascript" src="//an.yandex.ru/system/context.js"></scr'+'ipt>');
</script>
{%endif %}
{% endfor %}
</ul>
{% else %}
<p class="message-not-found">
<span class="message">
{% trans "Выставки по указанным параметрам не найдены. Попробуйте задать менее точный запрос по теме или расширить период времени" %}
</span>
</p>
{% endif %}
{% endwith %}
{% block scripts %}
{% if request.GET.debug == '1' %}
<script src="{% static 'client/js/_modules/block.exposition.list.js' %}"></script>
{% else %}
<script src="{% static 'client/js_min/_modules/block.exposition.list.min.js' %}"></script>
{% endif %}<script>
EXPO.exposition.list.init({
note:{
wrapClass:'note-wrap',
wrapDisabledClass:'note-wrap-disabled',
buttonClass:'note-button',
inputClass:'note-text'
},
addCalendarText:"{% trans 'В расписание' %}",
removeCalendarText:"{% trans 'Из расписания' %}"
});
</script>
{% endblock %}

@ -40,13 +40,13 @@
</aside>
<div class="i-info">
<header>
<div class="i-title">
<h1 class="i-title">
{% if exposition.main_title %}
{{ exposition.main_title|safe }} {{ exposition.name|safe }}
{% else %}
{{ exposition.name|safe }}
{% endif %}
</div>
</h1>
</header>
<div class="i-date">
{% with obj=exposition %}
@ -150,7 +150,7 @@
{% with photos=exposition.get_photos|slice:"5" %}
<hr />
<div class="i-photo-slides">
<div class="sect-title"><a href="#">{% trans 'Фотографии с прошлой выставки' %}</a></div>
<h2 class="sect-title"><a href="#">{% trans 'Фотографии с прошлой выставки' %}</a></h2>
<div id="ps-photo-gallery" class="ps-photo-gallery swiper-container">
<ul class="swiper-wrapper">
{% for photo in photos %}
@ -170,13 +170,13 @@
{% if exposition.description %}
<div class="i-event-description">
<div class="ied-title">{% trans 'О выставке' %} {{ exposition.name|safe }}</div>
<h2 class="ied-title">{% trans 'О выставке' %} {{ exposition.name|safe }}</h2>
<div class="ied-text">{{ exposition.description|safe|linebreaks }}</div>
</div>
<hr />
{% endif %}
<div class="i-event-additional clearfix">
<div class="sect-title">{% trans 'Дополнительная информация' %}</div>
<h2 class="sect-title">{% trans 'Дополнительная информация' %}</h2>
<ul class="e-docs">
{% if exposition.business_program.exists %}
<li><a href="{{ exposition.get_permanent_url }}program/">{% trans 'Деловая программа' %}</a></li>
@ -231,7 +231,7 @@
{% if companies %}
{# есть участники #}
<header>
<div class="im-title">{% trans 'Участники' %}</div>
<h2 class="im-title">{% trans 'Участники' %}</h2>
<a class="more" href="{{ exposition.get_permanent_url }}members/">{% trans 'Все участники' %}</a>
</header>
@ -253,7 +253,7 @@
{% else %}
{# нет участников #}
<header>
<div class="im-title">{% trans 'Участники' %}</div>
<h2 class="im-title">{% trans 'Участники' %}</h2>
<p>{% trans 'Привлекайте целевых посетителей на стенд' %}</p>
<p><a href="#pw-advertise" class="button icon-up pw-open" >Рекламировать участника</a></p>
</header>
@ -263,7 +263,7 @@
<div class="im-visitors">
{% with visitors=exposition.users.all|slice:":17" %}
<header>
<div class="im-title">{% trans 'Посетители' %}</div>
<h2 class="im-title">{% trans 'Посетители' %}</h2>
</header>
<ul id="visitors-list">
{% if visitors %}
@ -322,7 +322,7 @@
<hr />
{% if exposition.get_nearest_events|slice:":6" %}
<div class="e-cat">
<div class="sect-title">{% trans 'Ближайшие выставки по тематике' %} <a href="{{ expo_catalog }}theme/{{ exposition.theme.all.0.url }}">«{{ exposition.theme.all.0 }}»</a></div>
<h2 class="sect-title">{% trans 'Ближайшие выставки по тематике' %} <a href="{{ expo_catalog }}theme/{{ exposition.theme.all.0.url }}">«{{ exposition.theme.all.0 }}»</a></h2>
<ul class="cat-list cl-exhibitions">
{% for exp in exposition.get_nearest_events %}
<li class="cl-item">
@ -369,7 +369,7 @@
</div>
{% endif %}
<div class="e-cat look-also">
<div class="sect-title">{% trans 'Смотрите также:' %}</div>
<h2 class="sect-title">{% trans 'Смотрите также:' %}</h2>
<a href="{{ exposition.catalog }}city/{{ exposition.city.url }}/">{% trans "Выставки" %} {% if request.LANGUAGE_CODE == 'ru' and exposition.city.inflect %}{{ exposition.city.inflect }}{% else %}{% trans 'in' %} {{ exposition.city.name }}{% endif %}</a>
<a href="{{ exposition.catalog }}country/{{ exposition.country.url }}/">{% trans "Выставки" %} {% if request.LANGUAGE_CODE == 'ru' and exposition.country.inflect %}{{ exposition.country.inflect }}{% else %}{% trans 'in' %} {{ exposition.country.name }}{% endif %}</a>
<a href="{{ exposition.catalog }}theme/{{ exposition.theme.all.0.url }}/country/{{ exposition.country.url }}/">{% trans "Выставки по тематике " %}&laquo;{{ exposition.theme.all.0.name|lower }}&raquo; {% if request.LANGUAGE_CODE == 'ru' and exposition.country.inflect %}{{ exposition.country.inflect }}{% else %}{% trans 'in' %} {{ exposition.country.name }}{% endif %}</a>

@ -37,13 +37,13 @@
<div class="i-info">
<header>
<div class="i-title">
<h1 class="i-title">
{% if exposition.main_title %}
{{ exposition.main_title|safe }} {{ exposition.name|safe }}
{% else %}
{{ exposition.name|safe }}
{% endif %}
</div>
</h1>
</header>
<div class="i-date">
{% with obj=exposition %}
@ -128,7 +128,7 @@
{% with photos=exposition.get_photos|slice:"5" %}
<hr />
<div class="i-photo-slides">
<div class="sect-title"><a href="#">{% trans 'Фотографии с прошлой выставки' %}</a></div>
<h2 class="sect-title"><a href="#">{% trans 'Фотографии с прошлой выставки' %}</a></h2>
<div id="ps-photo-gallery" class="ps-photo-gallery swiper-container">
<ul class="swiper-wrapper">
{% for photo in photos %}
@ -146,7 +146,7 @@
{% endwith %}
{% endif %}
<div class="i-event-description">
<div class="ied-title">{% trans 'О выставке' %} {{ exposition.name|safe }}</div>
<h2 class="ied-title">{% trans 'О выставке' %} {{ exposition.name|safe }}</h2>
{% if exposition.description %}
<div class="ied-text">{{ exposition.description|safe|linebreaks }}</div>
{%else %}
@ -157,7 +157,7 @@
<hr />
{% include 'client/includes/banners/expo_detail.html' %}
<div id="additional" class="i-event-additional clearfix">
<div class="sect-title">{% trans 'Дополнительная информация' %}</div>
<h2 class="sect-title">{% trans 'Дополнительная информация' %}</h2>
<ul class="e-docs">
{% if exposition.business_program.exists %}
<li><a href="{{ exposition.get_permanent_url }}program/">{% trans 'Деловая программа' %}</a></li>
@ -230,7 +230,7 @@
{% if companies %}
{# есть участники #}
<header>
<div class="im-title">{% trans 'Участники' %}</div>
<h2 class="im-title">{% trans 'Участники' %}</h2>
<a class="more" href="{{ exposition.get_permanent_url }}members/">{% trans 'Все участники' %}</a>
</header>
@ -252,7 +252,7 @@
{% else %}
{# нет участников #}
<header>
<div class="im-title">{% trans 'Участники' %}</div>
<h2 class="im-title">{% trans 'Участники' %}</h2>
<p>{% trans 'Привлекайте целевых посетителей на стенд' %}</p>
<p><a href="#pw-advertise" class="button icon-up pw-open" >{% trans 'Рекламировать участника' %}</a></p>
</header>
@ -262,7 +262,7 @@
<div class="im-visitors">
{% with visitors=exposition.users.all|slice:":17" %}
<header>
<div class="im-title">{% trans 'Посетители' %}</div>
<h2 class="im-title">{% trans 'Посетители' %}</h2>
</header>
<ul id="visitors-list">
{% if visitors %}
@ -319,7 +319,7 @@
<hr />
{% if exposition.get_nearest_events|slice:":6" %}
<div class="e-cat">
<div class="sect-title">{% trans 'Ближайшие выставки по тематике' %} <a href="{{ expo_catalog }}theme/{{ exposition.theme.all.0.url }}">«{{ exposition.theme.all.0 }}»</a></div>
<h2 class="sect-title">{% trans 'Ближайшие выставки по тематике' %} <a href="{{ expo_catalog }}theme/{{ exposition.theme.all.0.url }}">«{{ exposition.theme.all.0 }}»</a></h2>
<ul class="cat-list cl-exhibitions">
{% for exp in exposition.get_nearest_events %}
<li class="cl-item">
@ -377,7 +377,7 @@
{% include 'client/includes/banners/detail_inner_3.html' %}
{% endif %}
<div class="e-cat look-also">
<div class="sect-title">{% trans 'Смотрите также:' %}</div>
<h2 class="sect-title">{% trans 'Смотрите также:' %}</h2>
<a href="{{ exposition.catalog }}city/{{ exposition.city.url }}/">{% trans "Выставки" %} {% if request.LANGUAGE_CODE == 'ru' and exposition.city.inflect %}{{ exposition.city.inflect }}{% else %}{% trans 'in' %} {{ exposition.city.name }}{% endif %}</a>
<a href="{{ exposition.catalog }}country/{{ exposition.country.url }}/">{% trans "Выставки" %} {% if request.LANGUAGE_CODE == 'ru' and exposition.country.inflect %}{{ exposition.country.inflect }}{% else %}{% trans 'in' %} {{ exposition.country.name }}{% endif %}</a>
<a href="{{ exposition.catalog }}theme/{{ exposition.theme.all.0.url }}/country/{{ exposition.country.url }}/">{% trans "Выставки по тематике " %}&laquo;{{ exposition.theme.all.0.name|lower }}&raquo; {% if request.LANGUAGE_CODE == 'ru' and exposition.country.inflect %}{{ exposition.country.inflect }}{% else %}{% trans 'in' %} {{ exposition.country.name }}{% endif %}</a>

@ -34,13 +34,13 @@
<div class="i-info">
<header>
<div class="i-title">
<h1 class="i-title">
{% if exposition.main_title %}
{{ exposition.main_title|safe }}
{% else %}
{{ exposition.name|safe }}
{% endif %}
</div>
</h1>
</header>
<div class="i-date">
@ -69,7 +69,7 @@
</div>
</div>
<div class="e-price">
<div class="sect-title">{% trans 'Стоимость посещения и участия' %}</div>
<h2 class="sect-title">{% trans 'Стоимость посещения и участия' %}</h2>
<div class="ep-wrap">
<div class="e-price-wrap">

@ -38,9 +38,9 @@
<div class="i-info">
<header>
<div class="i-title">
<h1 class="i-title">
{{ exposition.main_title|safe }}
</div>
</h1>
</header>
<div class="i-date">
@ -72,7 +72,7 @@
{% with days=exposition.get_timetables_days %}
{% if days %}
<div class="e-programm">
<div class="sect-title">Деловая программа</div>
<h2 class="sect-title">Деловая программа</h2>
<div class="ep-wrap">

@ -10,9 +10,6 @@
<li><a href="{{ obj.get_permanent_url }}service/{{ service.url }}/">{{ service.name }}</a></li>
{% endfor %}
{% endwith %}
{% if obj.country_id in sng_countries %}
<li><a href="http://www.booking.com/searchresults.html?aid={{ book_aid }}&city={{ obj.city.id }}&do_availability_check=on&label=expo_search&lang={{ request.LANGUAGE_CODE }}&checkin_monthday={{ obj.data_begin|date:'j' }}&checkin_year_month={{ obj.data_begin|date:'Y' }}-{{ obj.data_begin|date:'n' }}&checkout_monthday={{ obj.data_end|date:'j' }}&checkout_year_month={{ obj.data_end|date:'Y' }}-{{ obj.data_end|date:'n' }}">{% trans 'Заказать отель' %}</a></li>
{% endif %}
{% else %}
<li><a target="_blank" href="{{ obj.paid.oficial_link.get_object_url }}">{% trans 'Официальный сайт' %}</a></li>
<li><a target="_blank" href="{{ obj.paid.tickets_link.get_object_url }}">{% trans 'Билеты на выставку' %}</a></li>

@ -35,13 +35,13 @@
<div class="i-info">
<header>
<div class="i-title">
<h1 class="i-title">
{% if exposition.main_title %}
{{ exposition.main_title|safe }}
{% else %}
{{ exposition.name|safe }}
{% endif %}
</div>
</h1>
</header>
<div class="i-date">
@ -71,7 +71,7 @@
</div>
<hr />
<div class="e-statistic">
<div class="sect-title">{% trans 'Статистика' %}</div>
<h2 class="sect-title">{% trans 'Статистика' %}</h2>
<div class="ep-wrap">
{% with statistics=exposition.statistic.all %}
{% for st in statistics %}

@ -2,9 +2,9 @@
{% load i18n %}
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
{% if seotext %}
{% if seotext.description %}{% meta 'description' seotext.description %}{% endif %}
{% if seotext.page_title %}<title>{{ seotext.page_title }}</title>{% endif %}
{% if seo_text %}
{% if seo_text.description %}{% meta 'description' seo_text.description %}{% endif %}
{% if seo_text.page_title %}<title>{{ seo_text.page_title }}</title>{% endif %}
{% elif meta %}
{% if meta.description %}{% meta 'description' meta.description %}{% endif %}
{% if meta.keywords %}{% meta_list 'keywords' meta.keywords %}{% endif %}

@ -11,9 +11,9 @@
</aside>
<div class="i-info">
<div>
<div class="i-title">
<h1 class="i-title">
{{ place.name|safe }}
</div>
</h1>
<div class="i-descr annotation-part">
{{ place.description.strip|safe|linebreaks|truncatewords:20 }}
</div>
@ -46,7 +46,7 @@
{% if place.photogallery %}
{% with photos=place.photogallery.photos.all|slice:"5" %}
<div class="i-photo-slides">
<div class="sect-title">{% trans 'Фотогалерея' %}</div>
<h2 class="sect-title">{% trans 'Фотогалерея' %}</h2>
<div id="ps-photo-gallery" class="ps-photo-gallery swiper-container">
<ul class="swiper-wrapper">
{% for photo in photos %}
@ -69,7 +69,7 @@
{% if place.get_scheme %}
<hr />
<div class="e-pv-container">
<div class="sect-title">{% trans 'Схема павильонов' %}</div>
<h2 class="sect-title">{% trans 'Схема павильонов' %}</h2>
{% for scheme in place.get_scheme %}
{% ifequal scheme.file_path.url|slice:"-3:" 'pdf' %}
<a href="{{ scheme.file_path.url }}">{% trans 'Схема в pdf' %}</a>
@ -81,7 +81,7 @@
</div>
{% endif %}
<div class="i-contacts clearfix">
<div class="sect-title">{% trans 'Контактная информация' %}</div>
<h2 class="sect-title">{% trans 'Контактная информация' %}</h2>
<div class="ic-wrap">
<div class="ic-col">
<div class="ic-addr">{{ place.adress }}</div>
@ -104,7 +104,7 @@
{% if place.events %}
<div class="i-events-list">
<div class="sect-title">{% trans 'Список событий' %}</div>
<h2 class="sect-title">{% trans 'Список событий' %}</h2>
<ul class="cat-list cl-exhibitions">
{% for event in place.events %}
<li class="cl-item" data-link="#">
@ -180,7 +180,7 @@
</div>
{% if place.get_nearest_places %}
<div class="e-cat">
<div class="sect-title">{% trans 'Ближайшие выставочные центры' %}</div>
<h2 class="sect-title">{% trans 'Ближайшие выставочные центры' %}</h2>
<ul class="cat-list cl-places">
{% for pl in place.get_nearest_places %}
<li class="cl-item">

@ -1,7 +1,7 @@
{% load i18n %}
<div class="i-services">
<div class="sect-title">{% trans 'Услуги' %}</div>
<h2 class="sect-title">{% trans 'Услуги' %}</h2>
<div class="is-wrap clearfix">
{% if place.place == 'place_exposition' %}
<ul>

@ -23,7 +23,7 @@
</section>
{% endblock %}
{% block search %}
{% include 'includes/catalog_search_main.html' with search_form=search_form %}
{% include 'client/includes/catalog_search_main.html' with search_form=search_form %}
{% endblock %}
{% block catalog %}
<section class="layout mp-catalog">

@ -6,9 +6,9 @@
<div class="item-wrap event clearfix" style="padding-left: 10px;">
<div class="i-info">
<header>
<div class="i-title">
<h1 class="i-title">
{% trans 'Ваша подписка активирована!' %}
</div>
</h1>
</header>
<div class="i-address">
<header>

@ -6,9 +6,9 @@
<div class="item-wrap event clearfix" style="padding-left: 10px;">
<div class="i-info">
<header>
<div class="i-title">
<h1 class="i-title">
{% trans 'Проверьте почту' %}
</div>
</h1>
</header>
<div class="i-address">

@ -10,16 +10,16 @@
<div class="i-info">
{% if messages %}
<header>
<div class="i-title">
<h1 class="i-title">
{% trans 'Параметры вашей подписки изменены.' %}
</div>
</h1>
</header>
{% else %}
<header>
<div class="i-title">
<h1 class="i-title">
{% trans 'Вы успешно отписаны' %}
</div>
</h1>
</header>

@ -101,7 +101,7 @@ Disallow: /*/serv-catalogue-info.php
Disallow: /*/serv-catalogs-info.php
Disallow: /expo-b/
Disallow: /newsletters/
Sitemap: http://expomap.ru/sitemap.xml
Sitemap: https://expomap.ru/sitemap.xml
User-agent: Googlebot
Disallow: /templates/
@ -206,7 +206,7 @@ Disallow: /*/serv-catalogue-info.php
Disallow: /*/serv-catalogs-info.php
Disallow: /expo-b/
Disallow: /newsletters/
Sitemap: http://expomap.ru/sitemap.xml
Sitemap: https://expomap.ru/sitemap.xml
User-agent: Yandex
Disallow: /templates/
@ -311,5 +311,5 @@ Disallow: /*/serv-catalogue-info.php
Disallow: /*/serv-catalogs-info.php
Disallow: /expo-b/
Disallow: /newsletters/
Host: expomap.ru
Sitemap: http://expomap.ru/sitemap.xml
Host: https://expomap.ru
Sitemap: https://expomap.ru/sitemap.xml

@ -182,8 +182,17 @@
<hr />
<div class="rq-note">
{% trans '<p>Укажите в запросе исходную информацию о Ваших целях и задачах, и мы подберем'%}
{% if object %} {{ object.name }} {%else %} {% trans 'выставку' %}{%endif %} {% trans 'которая будет им соответствовать. Далее мы свяжемся с организаторами, чтобы уточнить наличие свободных площадей и цены, и вместе с Вами начнем создавать концепцию Вашего участия.</p>' %}
{% if object %}
<p>
{% trans 'Укажите в запросе исходную информацию о Ваших целях и задачах, и мы подберем' %} {{ object.name }}
{% trans 'которая будет им соответствовать. Далее мы свяжемся с организаторами, чтобы уточнить наличие свободных площадей и цены, и вместе с Вами начнем создавать концепцию Вашего участия." На "Укажите в запросе исходную информацию о Ваших целях и задачах, и мы проанализируем, насколько' %} {{ object.name }}
{% trans 'им соответствует. Далее мы свяжемся с организаторами, чтобы уточнить наличие свободных площадей и цены, и вместе с Вами начнем создавать концепцию Вашего участия.' %}
</p>
{% else %}
<p>
{% trans 'Укажите в запросе исходную информацию о Ваших целях и задачах, и мы подберем выставку которая будет им соответствовать. Далее мы свяжемся с организаторами, чтобы уточнить наличие свободных площадей и цены, и вместе с Вами начнем создавать концепцию Вашего участия.'%}
</p>
{% endif %}
</div>
{% if messages %}
@ -204,7 +213,7 @@
<div class="rq-to-hide">
<div class="s-comments">
<div class="sect-title">{% trans 'Отзывы клиентов' %}:</div>
<h2 class="sect-title">{% trans 'Отзывы клиентов' %}:</h2>
<div class="cat-list sc-comments">
<div class="cl-item">
@ -269,10 +278,7 @@
<div class="i-sub-articles">
<ul>
{% if object %}
{% if object.country_id in sng_countries %}
<li><a href="{{ object.get_permanent_url }}service/visit/">{% trans 'Бизнес-тур «под ключ' %}»</a></li>
<li><a href="{{ object.get_permanent_url }}service/tickets/">{% trans 'Билеты на выставку' %}</a></li>
{% endif %}
<li><a href="{{ object.get_permanent_url }}service/translator/">{% trans 'Устный переводчик' %}</a></li>
<li><a href="{{ object.get_permanent_url }}service/remote/">{% trans 'Заочное посещение' %}</a></li>

@ -197,7 +197,7 @@
<div class="rq-to-hide">
<div class="s-comments">
<div class="sect-title">{% trans 'Отзывы клиентов' %}:</div>
<h2 class="sect-title">{% trans 'Отзывы клиентов' %}:</h2>
<div class="cat-list sc-comments">
<div class="cl-item">
@ -262,10 +262,7 @@
<div class="i-sub-articles">
<ul>
{% if object %}
{% if object.country_id in sng_countries %}
<li><a href="{{ object.get_permanent_url }}service/visit/">{% trans 'Бизнес-тур «под ключ' %}»</a></li>
<li><a href="{{ object.get_permanent_url }}service/tickets/">{% trans 'Билеты на выставку' %}</a></li>
{% endif %}
<li><a href="{{ object.get_permanent_url }}service/translator/">{% trans 'Устный переводчик' %}</a></li>
<li><a href="{{ object.get_permanent_url }}service/remote/">{% trans 'Заочное посещение' %}</a></li>
{% else %}

@ -208,7 +208,7 @@
<div class="rq-to-hide">
<div class="s-comments">
<div class="sect-title">{% trans 'Отзывы клиентов' %}:</div>
<h2 class="sect-title">{% trans 'Отзывы клиентов' %}:</h2>
<div class="cat-list sc-comments">
<div class="cl-item">
@ -274,9 +274,7 @@
<ul>
{% if object %}
{% if object.country_id in sng_countries %}
<li><a href="{{ object.get_permanent_url }}service/visit/">{% trans 'Бизнес-тур «под ключ' %}»</a></li>
{% endif %}
<li><a href="{{ object.get_permanent_url }}service/translator/">{% trans 'Устный переводчик' %}</a></li>
<li><a href="{{ object.get_permanent_url }}service/remote/">{% trans 'Заочное посещение' %}</a></li>
<li><a href="{{ object.get_permanent_url }}service/participation/">{% trans 'Участие в выставке' %}</a></li>

@ -292,7 +292,7 @@
{% endcomment %}
<div class="s-comments">
<div class="sect-title">{% trans 'Отзывы клиентов' %}:</div>
<h2 class="sect-title">{% trans 'Отзывы клиентов' %}:</h2>
<div class="cat-list sc-comments">
<div class="cl-item">
@ -358,9 +358,7 @@
<div class="i-sub-articles">
<ul>
{% if object %}
{% if object.country_id in sng_countries %}
<li><a href="{{ object.get_permanent_url }}service/tickets/">{% trans 'Билеты на выставку' %}</a></li>
{% endif %}
<li><a href="{{ object.get_permanent_url }}service/translator/">{% trans 'Устный переводчик' %}</a></li>
<li><a href="{{ object.get_permanent_url }}service/remote/">{% trans 'Заочное посещение' %}</a></li>
<li><a href="{{ object.get_permanent_url }}service/participation/">{% trans 'Участие в выставке' %}</a></li>

@ -230,7 +230,7 @@
<hr />
{% comment %}
<div class="i-staff">
<div class="sect-title"><a href="#">{% trans 'Наши специалисты' %}</a></div>
<h2 class="sect-title"><a href="#">{% trans 'Наши специалисты' %}</a></h2>
<div class="i-staff-list">
@ -293,7 +293,7 @@
<div class="rq-to-hide">
<div class="s-comments">
<div class="sect-title">{% trans 'Отзывы клиентов' %}:</div>
<h2 class="sect-title">{% trans 'Отзывы клиентов' %}:</h2>
<div class="cat-list sc-comments">
<div class="cl-item">
@ -358,10 +358,7 @@
<div class="i-sub-articles">
<ul>
{% if object %}
{% if object.country_id in sng_countries %}
<li><a href="{{ object.get_permanent_url }}service/tickets/">{% trans 'Билеты на выставку' %}</a></li>
<li><a href="{{ object.get_permanent_url }}service/visit/">{% trans 'Бизнес-тур «под ключ' %}»</a></li>
{% endif %}
<li><a href="{{ object.get_permanent_url }}service/remote/">{% trans 'Заочное посещение' %}</a></li>
<li><a href="{{ object.get_permanent_url }}service/participation/">{% trans 'Участие в выставке' %}</a></li>
{% else %}

@ -2,5 +2,5 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body>Verification: 4c326c16c916403e</body>
<body>Verification: 4c45d77eb3f781f8</body>
</html>

@ -33,7 +33,7 @@
<div class="i-info">
<header>
<div class="i-title">{{ object.title }}</div>
<h1 class="i-title">{{ object.title }}</h1>
</header>
<div class="i-descr" style="min-height: 80px;">
@ -253,7 +253,7 @@
{% with object.specialists.all as specialists %}
{% if specialists %}
<div class="i-staff">
<div class="sect-title">{% trans 'Наши специалисты' %}</div>
<h2 class="sect-title">{% trans 'Наши специалисты' %}</h2>
<div class="i-staff-list">
<ul>
@ -286,7 +286,7 @@
<div class="rq-to-hide">
<div class="s-comments">
<div class="sect-title">{% trans 'Отзывы клиентов:' %}</div>
<h2 class="sect-title">{% trans 'Отзывы клиентов:' %}</h2>
<div class="cat-list sc-comments">
{% for feedback in feedbacks %}
<div class="cl-item">

@ -1811,11 +1811,11 @@
<div class="i-info">
<header>
<div class="i-title">
<h1 class="i-title">
Китайская международная выставка технологий водоподготовки, очистки сточных вод и управления водными ресурсами Water Expo China 2014
</div>
</h1>
</header>
<div class="i-date">
@ -1966,7 +1966,7 @@
<div class="i-event-additional clearfix">
<div class="sect-title">Дополнительная информация</div>
<h2 class="sect-title">Дополнительная информация</h2>
<ul class="e-docs">
@ -2025,7 +2025,7 @@
<header>
<div class="im-title">Участники</div>
<h2 class="im-title">Участники</h2>
<p>Привлекайте целевых посетителей на стенд</p>
<p><a href="#pw-advertise" class="button icon-up pw-open" >Рекламировать участника</a></p>
</header>
@ -2036,7 +2036,7 @@
<div class="im-visitors">
<header>
<div class="im-title">Посетители</div>
<h2 class="im-title">Посетители</h2>
</header>
<ul id="visitors-list">
@ -2099,9 +2099,9 @@
<div class="h-booking">
<header class="clearfix">
<div class="sect-title">
<h2 class="sect-title">
<a target="_blank" href="http://www.booking.com/searchresults.html?aid=333667&city=-1898541">Отели рядом с выставкой от <b>Booking</b>.com</a>
</div>
</h2>
<a class="more blue2" target="_blank" href="http://www.booking.com/searchresults.html?aid=333667&city=-1898541">Все отели поблизости</a>
</header>
<ul>
@ -2176,7 +2176,7 @@
<hr />
<div class="e-cat">
<div class="sect-title">Ближайшие выставки по тематике <a href="/expo/theme/ekologiya-ochistka-utilizatsiya">«Экология, очистка, утилизация»</a></div>
<h2 class="sect-title">Ближайшие выставки по тематике <a href="/expo/theme/ekologiya-ochistka-utilizatsiya">«Экология, очистка, утилизация»</a></h2>
<ul class="cat-list cl-exhibitions">
<li class="cl-item">
@ -2380,7 +2380,7 @@
<div class="abn"><a href="#"><img src="/static/client/img/_del-temp/banner-2.gif" alt="" /></a></div>
-->
<div class="e-cat look-also">
<div class="sect-title">Смотрите также:</div>
<h2 class="sect-title">Смотрите также:</h2>
<a href="/expo/city/beijing/">Выставки в Пекине</a>
<a href="/expo/country/china/">Выставки в Китае</a>
<a href="/expo/theme/ekologiya-ochistka-utilizatsiya/country/china/">Выставки по тематике &laquo;экология, очистка, утилизация&raquo; в Китае</a>

@ -428,9 +428,9 @@
</aside>
<div class="i-info">
<header>
<div class="i-title">
<h1 class="i-title">
Конференция о криптовалюте Bitcoin Bitcoin Сonference Kiev 2015
</div>
</h1>
</header>
<div class="i-date">
24 сентября 2015
@ -498,7 +498,7 @@
</ul>
</div>
<div class="i-event-description">
<div class="ied-title">О конференции Bitcoin Сonference Kiev 2015</div>
<h2 class="ied-title">О конференции Bitcoin Сonference Kiev 2015</h2>
<div class="ied-text">
<p>
<p style="text-align: justify;"><strong>Bitcoin Сonference Kiev</strong> &ndash; площадка, на которой встретятся лучшие специалисты в сфере криптовалют со всего мира, чтобы поделиться опытом и знаниями о том, как работает Bitcoin и почему эта виртуальная &laquo;монета&raquo; имеет все шансы стать валютой №1 в мире.<br /><br /><strong>Темы обсуждения:</strong><br /><br />Что такое Bitcoin?<br /><br />Как это работает: принципы и закономерности<br /><br />Бизнес с Bitcoin: увеличение доходности вашего бизнеса<br /><br />Безопасность &ndash; как и где хранить Bitcoin<br /><br />Правовой статуc Bitcoin и криптовалют в Украине<br /><br />Презентации Стартапов &ndash; лучшие проекты для работы с Bitcoin<br /><br /><strong>Кто посетитель?</strong></p>
@ -510,7 +510,7 @@
</div>
<hr />
<div class="i-event-additional clearfix">
<div class="sect-title">Дополнительная информация</div>
<h2 class="sect-title">Дополнительная информация</h2>
<ul class="e-docs">
</ul>
<dl class="add-info">
@ -520,14 +520,14 @@
<div class="i-members clearfix">
<div class="im-participants">
<header>
<div class="im-title">Спикеры</div>
<h2 class="im-title">Спикеры</h2>
<p>Разместите информацию о ключевых спикерах</p>
<p><a href="#pw-advertise" class="button icon-up pw-open" >Рекламировать спикера</a></p>
</header>
</div>
<div class="im-visitors">
<header>
<div class="im-title">Посетители</div>
<h2 class="im-title">Посетители</h2>
</header>
<ul id="visitors-list">
</ul>
@ -541,9 +541,9 @@
</div>
<div class="h-booking">
<header class="clearfix">
<div class="sect-title">
<h2 class="sect-title">
<a target="_blank" href="http://www.booking.com/searchresults.html?aid=333667&city=-2960561">Отели рядом с выставкой от <b>Booking</b>.com</a>
</div>
</h2>
<a class="more blue2" target="_blank" href="http://www.booking.com/searchresults.html?aid=333667&city=-2960561">Все отели поблизости</a>
</header>
<ul>
@ -603,7 +603,7 @@
</div>
<hr />
<div class="e-cat">
<div class="sect-title">Ближайшие выставки по тематике <a href="/expo/theme/biznes-investitsii-finansyi">«Бизнес, инвестиции, финансы»</a></div>
<h2 class="sect-title">Ближайшие выставки по тематике <a href="/expo/theme/biznes-investitsii-finansyi">«Бизнес, инвестиции, финансы»</a></h2>
<ul class="cat-list cl-exhibitions">
<li class="cl-item">
<div class="cl-item-wrap clearfix">
@ -747,7 +747,7 @@
</ul>
</div>
<div class="e-cat look-also">
<div class="sect-title">Смотрите также:</div>
<h2 class="sect-title">Смотрите также:</h2>
<a href="/conference/city/moscow/">Конференции в Москве</a>
<a href="/conference/country/russia/">Конференции в России</a>
<a href="/conference/theme/biznes-investitsii-finansyi/country/russia/">Конференции по тематике &laquo;бизнес, инвестиции, финансы&raquo; в России</a>

@ -1,480 +1,480 @@
@font-face {
font-family: 'pf_dindisplay_prolight';
src: url('../fonts/pfdindisplaypro-light-webfont.eot');
src: url('../fonts/pfdindisplaypro-light-webfont.eot?#iefix') format('embedded-opentype'),
url('../fonts/pfdindisplaypro-light-webfont.woff2') format('woff2'),
url('../fonts/pfdindisplaypro-light-webfont.woff') format('woff'),
url('../fonts/pfdindisplaypro-light-webfont.ttf') format('truetype'),
url('../fonts/pfdindisplaypro-light-webfont.svg#pf_dindisplay_prolight') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'pf_dindisplay_promedium';
src: url('../fonts/pfdindisplaypro-med-webfont.eot');
src: url('../fonts/pfdindisplaypro-med-webfont.eot?#iefix') format('embedded-opentype'),
url('../fonts/pfdindisplaypro-med-webfont.woff2') format('woff2'),
url('../fonts/pfdindisplaypro-med-webfont.woff') format('woff'),
url('../fonts/pfdindisplaypro-med-webfont.ttf') format('truetype'),
url('../fonts/pfdindisplaypro-med-webfont.svg#pf_dindisplay_promedium') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'pf_dindisplay_proregular';
src: url('../fonts/pfdindisplaypro-reg-webfont.eot');
src: url('../fonts/pfdindisplaypro-reg-webfont.eot?#iefix') format('embedded-opentype'),
url('../fonts/pfdindisplaypro-reg-webfont.woff2') format('woff2'),
url('../fonts/pfdindisplaypro-reg-webfont.woff') format('woff'),
url('../fonts/pfdindisplaypro-reg-webfont.ttf') format('truetype'),
url('../fonts/pfdindisplaypro-reg-webfont.svg#pf_dindisplay_proregular') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'MyriadProRegular';
src: url('../fonts/myriad_pro-webfont.eot');
src: url('../fonts/myriad_pro-webfont.eot?#iefix') format('embedded-opentype'),
url('../fonts/myriad_pro-webfont.woff') format('woff'),
url('../fonts/myriad_pro-webfont.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
body.pr {
margin:0;
color:#090909;
font:20px/24px 'pf_dindisplay_proregular', Arial, Helvetica, sans-serif;
background:#fff;
min-width:1000px;
}
.pr img {
border-style:none;
vertical-align:top;
}
.pr a {
color:#090909;
outline:none;
}
.pr a:hover {
text-decoration:none;
}
.pr * {
outline:none;
}
.pr input {
font:100% Arial, Helvetica, sans-serif;
vertical-align:middle;
}
.pr form, .pr fieldset {
margin:0;
padding:0;
border-style:none;
}
.pr header,
.pr nav,
.pr section,
.pr article,
.pr aside,
.pr footer,
.pr figure,
.pr menu,
.pr dialog {
display: block;
}
#pr-wrapper{
width:100%;
overflow:hidden;
}
.pr-center{
width:964px;
margin:0 auto;
padding:0 18px;
}
.pr-center:after{ display:block; clear:both; content:''; }
#pr-header{
overflow:hidden;
min-height:98px;
padding:62px 0 10px;
}
.pr-logo{
float:left;
width:254px;
height:74px;
background:url(../images/pr-logo.png) no-repeat;
text-indent:-9999px;
overflow:hidden;
}
.pr-logo a{
display:block;
height:100%;
}
.pr-slogan{
float:left;
margin:0 0 0 20px;
background:url(../images/pr-line01.png) no-repeat 0 50%;
padding:28px 0 20px 20px;
color:#454545;
font:19px/21px 'pf_dindisplay_prolight', Arial, Helvetica, sans-serif;
text-transform:uppercase;
}
.pr-search-icon{
background:url(../images/pr-icon01.png) no-repeat;
width:17px;
height:19px;
display:inline-block;
vertical-align:top;
margin:0 1px 0 3px;
}
.pr-header-box{
float:right;
text-align:right;
margin:-4px 0 0;
}
.pr-phone{
font-size: 25px;
line-height:30px;
text-decoration:none;
color:#454545;
display:inline-block;
vertical-align:top;
margin:0 0 5px;
}
.pr-social{
margin:0; padding:0; list-style:none;
font-size: 0;
line-height:0;
}
.pr-social li{
display:inline-block;
vertical-align:middle;
margin:0 0 0 6px;
-webkit-transition: all 100ms linear;
-moz-transition: all 100ms linear;
-ms-transition: all 100ms linear;
-o-transition: all 100ms linear;
transition: all 100ms linear;
}
.pr-social li:hover{
opacity:0.8;
}
#pr-promo{
background:url(../images/pr-img01.jpg) no-repeat 50% 0;
background-size:cover;
min-height:400px;
padding:35px 0 47px;
color:#fff;
}
#pr-promo .pr-center{
padding:0 25px;
width:950px;
}
#pr-promo h1{
font-weight:normal;
margin:0 0 16px;
font:39px/39px 'pf_dindisplay_prolight', Arial, Helvetica, sans-serif;
color:#fff;
}
#pr-promo h2{
font-weight:normal;
margin:0 0 15px;
font:27px/33px 'pf_dindisplay_promedium', Arial, Helvetica, sans-serif;
color:#99fbff;
}
#pr-promo p{
margin:0;
}
.pr-promo-text{
max-width:400px;
margin:0 0 22px;
}
.pr .pr-promo-text a{
color:#fff;
}
.pr-form{
width:509px;
text-align:center;
}
.pr-form .pr-row{
overflow:hidden;
margin:0 0 14px;
}
.pr-input{
float:left;
height:46px;
width:186px;
padding:0 44px 0 18px;
margin:0 0 0 13px;
background:#fff;
border-radius:4px;
position:relative;
}
.pr-input:first-child{
margin:0;
}
.pr-input:after{ content:'';
position:absolute;
top:13px;
right:14px;
width:20px;
height:20px; }
.pr-input.pr-name:after{
background:url(../images/pr-icon02.png) no-repeat 50% 50%;
}
.pr-input.pr-email:after{
background:url(../images/pr-icon03.png) no-repeat 50% 50%;
}
.pr-form input{
padding:0;
border:none;
color:#000;
font:17px/21px 'pf_dindisplay_promedium', Arial, Helvetica, sans-serif;
height:24px;
margin:12px 0 0;
}
.pr-form input:focus::-webkit-input-placeholder {
color:transparent;
}
.pr-form input:focus:-moz-placeholder {
color:transparent;
}
.pr-form input:focus:-ms-input-placeholder {
color:transparent;
}
.pr-form input:focus::-moz-placeholder {
color:transparent;
}
.pr-form input::-webkit-input-placeholder { /* WebKit browsers */
color:#808080;
opacity:1;
}
.pr-form input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
color:#808080;
opacity:1;
}
.pr-form input::-moz-placeholder { /* Mozilla Firefox 19+ */
color:#808080;
opacity:1;
}
.pr-form input:-ms-input-placeholder { /* Internet Explorer 10+ */
color:#808080;
opacity:1;
}
.pr-form button{
display:block;
border:2px solid #fff;
border-radius:4px;
background:#ff6900;
height:64px;
font: 30px/58px 'pf_dindisplay_proregular', Arial, Helvetica, sans-serif;
text-align:center;
text-transform:uppercase;
color:#fff;
width:100%;
cursor:pointer;
-webkit-transition: all 100ms linear;
-moz-transition: all 100ms linear;
-ms-transition: all 100ms linear;
-o-transition: all 100ms linear;
transition: all 100ms linear;
}
.pr-form button:hover{
opacity:0.9;
}
#pr-content{
padding:59px 0 26px;
overflow:hidden;
}
.pr .pr-interesting-form{
overflow:hidden;
margin:0 0 50px;
}
.pr-interesting{
float:left;
width:300px;
margin:0 85px 0 0;
}
.pr-interesting h3{
font-weight:normal;
margin:0 0 14px;
font:27px/27px 'MyriadProRegular', Arial, Helvetica, sans-serif;
color:#080808;
}
.pr-interesting h4{
font-weight:normal;
margin:0 17px 18px;
font-size: 20px;
line-height:22px;
color:#060606;
}
.pr-interesting-list{
margin:0; padding:0; list-style:none;
font-size: 17px;
line-height:21px;
color:#010100;
}
.pr-interesting-list li{
margin:0 0 7px;
}
.pr-close{
background:url(../images/pr-icon04.png) no-repeat;
width:12px;
height:12px;
display:inline-block;
vertical-align:top;
margin:4px 3px 0 0;
text-decoration:none;
}
.pr-interesting-box{
overflow:hidden;
}
.pr-interesting-wrap{
overflow:hidden;
margin:0 0 38px;
}
.pr-interesting-col{
margin:0 0 0 8px; padding:0; list-style:none;
float:left;
width:285px;
}
.pr-interesting-col:first-child{
margin:0;
}
.pr-interesting-col li{
margin:0 0 16px;
}
.pr .pr-btn-open{
display:block;
height:65px;
border:2px solid #ff7d22;
text-align:center;
padding:0 20px;
font:24px/65px 'MyriadProRegular', Arial, Helvetica, sans-serif;
color:#ff6900;
-webkit-transition: all 100ms linear;
-moz-transition: all 100ms linear;
-ms-transition: all 100ms linear;
-o-transition: all 100ms linear;
transition: all 100ms linear;
}
.pr .pr-btn-open:hover{
opacity:0.8;
}
.pr-btn-open span{
display:inline-block;
vertical-align:top;
padding:0 0 0 22px;
background:url(../images/pr-icon05.png) no-repeat 0 47%;
}
.pr-interesting-col label{
display:block;
overflow:hidden;
cursor:pointer;
padding:0 0 0 10px;
line-height:25px;
text-decoration:underline;
}
.pr-interesting-col label:hover{
text-decoration:none;
}
div.pr-check,
div.pr-radio {
float: left;
width: 24px;
height: 24px;
position: relative;
background:url(../images/pr-icon06.png) no-repeat;
cursor: pointer;
}
div.pr-check.checked{
background-position:0 -40px;
}
div.pr-radio.checked{
background-position:-0 -40px;
}
div.check.disabled,
div.check.disabled + label {
cursor: default !important;
}
div.pr-radio.disabled,
div.pr-radio.disabled + label{
cursor: default !important;
}
.pr-subscription{
overflow:hidden;
}
.pr-subscription h3{
font-weight:normal;
margin:0 0 46px;
font:27px/33px 'pf_dindisplay_promedium', Arial, Helvetica, sans-serif;
color:#000;
}
.pr-subscription-box{
overflow:hidden;
}
.pr-subscription-list{
float:left;
width:300px;
margin: 0 85px 0 0;
padding:0; list-style:none;
}
.pr-subscription-list li{
margin:0 0 27px;
}
.pr-subscription-row{
overflow:hidden;
margin:0 0 5px;
}
.pr-subscription-list label{
overflow:hidden;
display:block;
padding:0 0 0 12px;
cursor:pointer;
font-size: 23px;
line-height:26px;
}
.pr-subscription-row:hover label{
color:#ff6900;
}
.pr-subscription-list .pr-title{
margin:0 0 0 36px;
color:#482500;
font-size: 17px;
line-height:21px;
}
.pr-subscription-list p{
margin:0 0 5px;
}
.pr .pr-subscription-list .pr-title a{
color:#ff6900;
}
.pr-subscription-col{
overflow:hidden;
padding:88px 0 0;
text-align:center;
}
.pr-subscription-col button{
display:block;
background:#ff6900;
height:92px;
font: 35px/92px 'pf_dindisplay_prolight', Arial, Helvetica, sans-serif;
text-align:center;
text-transform:uppercase;
color:#fff;
width:100%;
margin:0 0 36px;
border:none;
cursor:pointer;
-webkit-transition: all 100ms linear;
-moz-transition: all 100ms linear;
-ms-transition: all 100ms linear;
-o-transition: all 100ms linear;
transition: all 100ms linear;
}
.pr-subscription-col button:hover{
opacity:0.9;
}
.pr-subscription-col strong{
font-weight:normal;
font:18px/22px 'pf_dindisplay_promedium', Arial, Helvetica, sans-serif;
color:#8f9698;
}
@font-face {
font-family: 'pf_dindisplay_prolight';
src: url('../fonts/pfdindisplaypro-light-webfont.eot');
src: url('../fonts/pfdindisplaypro-light-webfont.eot?#iefix') format('embedded-opentype'),
url('../fonts/pfdindisplaypro-light-webfont.woff2') format('woff2'),
url('../fonts/pfdindisplaypro-light-webfont.woff') format('woff'),
url('../fonts/pfdindisplaypro-light-webfont.ttf') format('truetype'),
url('../fonts/pfdindisplaypro-light-webfont.svg#pf_dindisplay_prolight') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'pf_dindisplay_promedium';
src: url('../fonts/pfdindisplaypro-med-webfont.eot');
src: url('../fonts/pfdindisplaypro-med-webfont.eot?#iefix') format('embedded-opentype'),
url('../fonts/pfdindisplaypro-med-webfont.woff2') format('woff2'),
url('../fonts/pfdindisplaypro-med-webfont.woff') format('woff'),
url('../fonts/pfdindisplaypro-med-webfont.ttf') format('truetype'),
url('../fonts/pfdindisplaypro-med-webfont.svg#pf_dindisplay_promedium') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'pf_dindisplay_proregular';
src: url('../fonts/pfdindisplaypro-reg-webfont.eot');
src: url('../fonts/pfdindisplaypro-reg-webfont.eot?#iefix') format('embedded-opentype'),
url('../fonts/pfdindisplaypro-reg-webfont.woff2') format('woff2'),
url('../fonts/pfdindisplaypro-reg-webfont.woff') format('woff'),
url('../fonts/pfdindisplaypro-reg-webfont.ttf') format('truetype'),
url('../fonts/pfdindisplaypro-reg-webfont.svg#pf_dindisplay_proregular') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'MyriadProRegular';
src: url('../fonts/myriad_pro-webfont.eot');
src: url('../fonts/myriad_pro-webfont.eot?#iefix') format('embedded-opentype'),
url('../fonts/myriad_pro-webfont.woff') format('woff'),
url('../fonts/myriad_pro-webfont.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
body.pr {
margin:0;
color:#090909;
font:20px/24px 'pf_dindisplay_proregular', Arial, Helvetica, sans-serif;
background:#fff;
min-width:1000px;
}
.pr img {
border-style:none;
vertical-align:top;
}
.pr a {
color:#090909;
outline:none;
}
.pr a:hover {
text-decoration:none;
}
.pr * {
outline:none;
}
.pr input {
font:100% Arial, Helvetica, sans-serif;
vertical-align:middle;
}
.pr form, .pr fieldset {
margin:0;
padding:0;
border-style:none;
}
.pr header,
.pr nav,
.pr section,
.pr article,
.pr aside,
.pr footer,
.pr figure,
.pr menu,
.pr dialog {
display: block;
}
#pr-wrapper{
width:100%;
overflow:hidden;
}
.pr-center{
width:964px;
margin:0 auto;
padding:0 18px;
}
.pr-center:after{ display:block; clear:both; content:'';}
#pr-header{
overflow:hidden;
min-height:98px;
padding:62px 0 10px;
}
.pr-logo{
float:left;
width:254px;
height:74px;
background:url(../images/pr-logo.png) no-repeat;
text-indent:-9999px;
overflow:hidden;
}
.pr-logo a{
display:block;
height:100%;
}
.pr-slogan{
float:left;
margin:0 0 0 20px;
background:url(../images/pr-line01.png) no-repeat 0 50%;
padding:28px 0 20px 20px;
color:#454545;
font:19px/21px 'pf_dindisplay_prolight', Arial, Helvetica, sans-serif;
text-transform:uppercase;
}
.pr-search-icon{
background:url(../images/pr-icon01.png) no-repeat;
width:17px;
height:19px;
display:inline-block;
vertical-align:top;
margin:0 1px 0 3px;
}
.pr-header-box{
float:right;
text-align:right;
margin:-4px 0 0;
}
.pr-phone{
font-size: 25px;
line-height:30px;
text-decoration:none;
color:#454545;
display:inline-block;
vertical-align:top;
margin:0 0 5px;
}
.pr-social{
margin:0; padding:0; list-style:none;
font-size: 0;
line-height:0;
}
.pr-social li{
display:inline-block;
vertical-align:middle;
margin:0 0 0 6px;
-webkit-transition: all 100ms linear;
-moz-transition: all 100ms linear;
-ms-transition: all 100ms linear;
-o-transition: all 100ms linear;
transition: all 100ms linear;
}
.pr-social li:hover{
opacity:0.8;
}
#pr-promo{
background:url(../images/pr-img01.jpg) no-repeat 50% 0;
background-size:cover;
min-height:400px;
padding:35px 0 47px;
color:#fff;
}
#pr-promo .pr-center{
padding:0 25px;
width:950px;
}
#pr-promo h1{
font-weight:normal;
margin:0 0 16px;
font:39px/39px 'pf_dindisplay_prolight', Arial, Helvetica, sans-serif;
color:#fff;
}
#pr-promo h2{
font-weight:normal;
margin:0 0 15px;
font:27px/33px 'pf_dindisplay_promedium', Arial, Helvetica, sans-serif;
color:#99fbff;
}
#pr-promo p{
margin:0;
}
.pr-promo-text{
max-width:400px;
margin:0 0 22px;
}
.pr .pr-promo-text a{
color:#fff;
}
.pr-form{
width:509px;
text-align:center;
}
.pr-form .pr-row{
overflow:hidden;
margin:0 0 14px;
}
.pr-input{
float:left;
height:46px;
width:186px;
padding:0 44px 0 18px;
margin:0 0 0 13px;
background:#fff;
border-radius:4px;
position:relative;
}
.pr-input:first-child{
margin:0;
}
.pr-input:after{ content:'';
position:absolute;
top:13px;
right:14px;
width:20px;
height:20px;}
.pr-input.pr-name:after{
background:url(../images/pr-icon02.png) no-repeat 50% 50%;
}
.pr-input.pr-email:after{
background:url(../images/pr-icon03.png) no-repeat 50% 50%;
}
.pr-form input{
padding:0;
border:none;
color:#000;
font:17px/21px 'pf_dindisplay_promedium', Arial, Helvetica, sans-serif;
height:24px;
margin:12px 0 0;
}
.pr-form input:focus::-webkit-input-placeholder {
color:transparent;
}
.pr-form input:focus:-moz-placeholder {
color:transparent;
}
.pr-form input:focus:-ms-input-placeholder {
color:transparent;
}
.pr-form input:focus::-moz-placeholder {
color:transparent;
}
.pr-form input::-webkit-input-placeholder { /* WebKit browsers */
color:#808080;
opacity:1;
}
.pr-form input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
color:#808080;
opacity:1;
}
.pr-form input::-moz-placeholder { /* Mozilla Firefox 19+ */
color:#808080;
opacity:1;
}
.pr-form input:-ms-input-placeholder { /* Internet Explorer 10+ */
color:#808080;
opacity:1;
}
.pr-form button{
display:block;
border:2px solid #fff;
border-radius:4px;
background:#ff6900;
height:64px;
font: 30px/58px 'pf_dindisplay_proregular', Arial, Helvetica, sans-serif;
text-align:center;
text-transform:uppercase;
color:#fff;
width:100%;
cursor:pointer;
-webkit-transition: all 100ms linear;
-moz-transition: all 100ms linear;
-ms-transition: all 100ms linear;
-o-transition: all 100ms linear;
transition: all 100ms linear;
}
.pr-form button:hover{
opacity:0.9;
}
#pr-content{
padding:59px 0 26px;
overflow:hidden;
}
.pr .pr-interesting-form{
overflow:hidden;
margin:0 0 50px;
}
.pr-interesting{
float:left;
width:300px;
margin:0 85px 0 0;
}
.pr-interesting h3{
font-weight:normal;
margin:0 0 14px;
font:27px/27px 'MyriadProRegular', Arial, Helvetica, sans-serif;
color:#080808;
}
.pr-interesting h4{
font-weight:normal;
margin:0 17px 18px;
font-size: 20px;
line-height:22px;
color:#060606;
}
.pr-interesting-list{
margin:0; padding:0; list-style:none;
font-size: 17px;
line-height:21px;
color:#010100;
}
.pr-interesting-list li{
margin:0 0 7px;
}
.pr-close{
background:url(../images/pr-icon04.png) no-repeat;
width:12px;
height:12px;
display:inline-block;
vertical-align:top;
margin:4px 3px 0 0;
text-decoration:none;
}
.pr-interesting-box{
overflow:hidden;
}
.pr-interesting-wrap{
overflow:hidden;
margin:0 0 38px;
}
.pr-interesting-col{
margin:0 0 0 8px; padding:0; list-style:none;
float:left;
width:285px;
}
.pr-interesting-col:first-child{
margin:0;
}
.pr-interesting-col li{
margin:0 0 16px;
}
.pr .pr-btn-open{
display:block;
height:65px;
border:2px solid #ff7d22;
text-align:center;
padding:0 20px;
font:24px/65px 'MyriadProRegular', Arial, Helvetica, sans-serif;
color:#ff6900;
-webkit-transition: all 100ms linear;
-moz-transition: all 100ms linear;
-ms-transition: all 100ms linear;
-o-transition: all 100ms linear;
transition: all 100ms linear;
}
.pr .pr-btn-open:hover{
opacity:0.8;
}
.pr-btn-open span{
display:inline-block;
vertical-align:top;
padding:0 0 0 22px;
background:url(../images/pr-icon05.png) no-repeat 0 47%;
}
.pr-interesting-col label{
display:block;
overflow:hidden;
cursor:pointer;
padding:0 0 0 10px;
line-height:25px;
text-decoration:underline;
}
.pr-interesting-col label:hover{
text-decoration:none;
}
div.pr-check,
div.pr-radio {
float: left;
width: 24px;
height: 24px;
position: relative;
background:url(../images/pr-icon06.png) no-repeat;
cursor: pointer;
}
div.pr-check.checked{
background-position:0 -40px;
}
div.pr-radio.checked{
background-position:-0 -40px;
}
div.check.disabled,
div.check.disabled + label {
cursor: default !important;
}
div.pr-radio.disabled,
div.pr-radio.disabled + label{
cursor: default !important;
}
.pr-subscription{
overflow:hidden;
}
.pr-subscription h3{
font-weight:normal;
margin:0 0 46px;
font:27px/33px 'pf_dindisplay_promedium', Arial, Helvetica, sans-serif;
color:#000;
}
.pr-subscription-box{
overflow:hidden;
}
.pr-subscription-list{
float:left;
width:300px;
margin: 0 85px 0 0;
padding:0; list-style:none;
}
.pr-subscription-list li{
margin:0 0 27px;
}
.pr-subscription-row{
overflow:hidden;
margin:0 0 5px;
}
.pr-subscription-list label{
overflow:hidden;
display:block;
padding:0 0 0 12px;
cursor:pointer;
font-size: 23px;
line-height:26px;
}
.pr-subscription-row:hover label{
color:#ff6900;
}
.pr-subscription-list .pr-title{
margin:0 0 0 36px;
color:#482500;
font-size: 17px;
line-height:21px;
}
.pr-subscription-list p{
margin:0 0 5px;
}
.pr .pr-subscription-list .pr-title a{
color:#ff6900;
}
.pr-subscription-col{
overflow:hidden;
padding:88px 0 0;
text-align:center;
}
.pr-subscription-col button{
display:block;
background:#ff6900;
height:92px;
font: 35px/92px 'pf_dindisplay_prolight', Arial, Helvetica, sans-serif;
text-align:center;
text-transform:uppercase;
color:#fff;
width:100%;
margin:0 0 36px;
border:none;
cursor:pointer;
-webkit-transition: all 100ms linear;
-moz-transition: all 100ms linear;
-ms-transition: all 100ms linear;
-o-transition: all 100ms linear;
transition: all 100ms linear;
}
.pr-subscription-col button:hover{
opacity:0.9;
}
.pr-subscription-col strong{
font-weight:normal;
font:18px/22px 'pf_dindisplay_promedium', Arial, Helvetica, sans-serif;
color:#8f9698;
}

@ -1,28 +1,28 @@
$(document).ready(function(){
$('.pr-form input, .pr-form textarea').placeholder();
$('.pr-btn-open').click(function(){
_this = $(this);
$('.pr-interesting-box').find('.pr-interesting-col li').slideDown(200, function(){
_this.fadeOut(400);
});
return false;
});
$('.pr form input').iCheck({
checkboxClass: 'pr-check',
radioClass: 'pr-radio',
increaseArea: '20%' // optional
});
$('.pr-interesting-form .pr-checkbox:checkbox').on('ifToggled', function(){
$('.pr-interesting-list').html('');
$('.pr-interesting-form input:checkbox').each(function(){
if ($(this).is(':checked')){
$('.pr-interesting-list').append('<li data-id="'+$(this).attr('id')+'"><a class="pr-close" href="#">&nbsp;</a> '+$(this).parent().parent().find('label').text()+'</li>');
}
})
});
$('.pr-interesting-list').on('click', '.pr-close', function(){
var _id = $(this).parent().attr('data-id');
$('.pr-interesting-form input:checkbox#'+_id).iCheck('uncheck');
return false;
});
$(document).ready(function(){
$('.pr-form input, .pr-form textarea').placeholder();
$('.pr-btn-open').click(function(){
_this = $(this);
$('.pr-interesting-box').find('.pr-interesting-col li').slideDown(200, function(){
_this.fadeOut(400);
});
return false;
});
$('.pr form input').iCheck({
checkboxClass: 'pr-check',
radioClass: 'pr-radio',
increaseArea: '20%' // optional
});
$('.pr-interesting-form .pr-checkbox:checkbox').on('ifToggled', function(){
$('.pr-interesting-list').html('');
$('.pr-interesting-form input:checkbox').each(function(){
if ($(this).is(':checked')){
$('.pr-interesting-list').append('<li data-id="'+$(this).attr('id')+'"><a class="pr-close" href="#">&nbsp;</a> '+$(this).parent().parent().find('label').text()+'</li>');
}
})
});
$('.pr-interesting-list').on('click', '.pr-close', function(){
var _id = $(this).parent().attr('data-id');
$('.pr-interesting-form input:checkbox#'+_id).iCheck('uncheck');
return false;
});
});
Loading…
Cancel
Save