Merge branch 'master' of git.general-servers.com:expomap/expomap into develop

remotes/origin/1203
Nazarii Kotiuk 10 years ago
commit 4a78df6d8b
  1. 2
      conference/views.py
  2. 2
      emencia/django/newsletter/views/admin_views.py
  3. 14
      meta/models.py
  4. 2
      proj/urls.py
  5. 4
      templates/client/accounts/translators/translator_city.html
  6. 4
      templates/client/accounts/translators/translator_country.html
  7. 7
      templates/client/accounts/user_events.html
  8. 5
      templates/client/base_catalog.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. 2
      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. 2
      templates/client/includes/article/news_preview.html
  31. 4
      templates/client/includes/booking_block.html
  32. 16
      templates/client/includes/catalog_search.html
  33. 16
      templates/client/includes/catalog_search_main.html
  34. 4
      templates/client/includes/company/company_object.html
  35. 20
      templates/client/includes/conference/conference_object.html
  36. 20
      templates/client/includes/exposition/expo_paid.html
  37. 20
      templates/client/includes/exposition/exposition_object.html
  38. 6
      templates/client/includes/exposition/price.html
  39. 6
      templates/client/includes/exposition/programm.html
  40. 3
      templates/client/includes/exposition/services.html
  41. 6
      templates/client/includes/exposition/statistic.html
  42. 6
      templates/client/includes/meta.html
  43. 14
      templates/client/includes/place/place_object.html
  44. 2
      templates/client/includes/place/place_services.html
  45. 2
      templates/client/index.html
  46. 4
      templates/client/newsletters/activation_complete.html
  47. 4
      templates/client/newsletters/activation_send.html
  48. 8
      templates/client/newsletters/unsubscribe_success.html
  49. 8
      templates/client/robots.txt
  50. 20
      templates/client/service/participation.html
  51. 7
      templates/client/service/remotely.html
  52. 6
      templates/client/service/tickets.html
  53. 6
      templates/client/service/tour.html
  54. 9
      templates/client/service/translator.html
  55. 2
      templates/client/simple_pages/yandex_check.html
  56. 6
      templates/client/specialist_catalog/catalog_detailed.html
  57. 18
      templates/client/static_client/html-cut/paid_exposition.html
  58. 20
      templates/client/static_client/html-cut/subscribe.html
  59. 14
      templates/client/static_client/subscribe_lending/css/all.css

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

@ -159,7 +159,7 @@ class UpdateMailingList(UpdateView):
if themes: if themes:
obj.subscribers.add(*list(Contact.objects.filter(contactsettings__theme__in=themes).distinct())) obj.subscribers.add(*list(Contact.objects.filter(contactsettings__theme__in=themes).distinct()))
return HttpResponseRedirect(self.success_url) return HttpResponseRedirect(self.success_url)
class CreateMailingList(CreateView): class CreateMailingList(CreateView):

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

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

@ -27,7 +27,7 @@
<div class="i-info"> <div class="i-info">
<header> <header>
<div class="i-title">{{ object.name }}</div> <h1 class="i-title">{{ object.name }}</h1>
</header> </header>
<div class="i-descr"> <div class="i-descr">
@ -73,7 +73,7 @@
<div class="i-staff"> <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"> <div class="i-staff-list">

@ -24,7 +24,7 @@
<div class="i-info"> <div class="i-info">
<header> <header>
<div class="i-title">{% trans 'Переводчики' %} {{ object.inflect }}</div> <h1 class="i-title">{% trans 'Переводчики' %} {{ object.inflect }}</h1>
</header> </header>
<div class="i-descr"> <div class="i-descr">
@ -108,7 +108,7 @@
<hr> <hr>
<div class="i-staff"> <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"> <div class="i-staff-list">

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

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

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

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

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

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

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

@ -23,7 +23,7 @@
{% if member.profile.country %}{{ member.profile.country }},{% endif %}{% if member.profile.city %} {{ member.profile.city }}{% endif %} {% if member.profile.country %}{{ member.profile.country }},{% endif %}{% if member.profile.city %} {{ member.profile.city }}{% endif %}
</div> </div>
{% endif %} {% endif %}
<div class="i-title">{{ member.get_full_name }}</div> <h1 class="i-title">{{ member.get_full_name }}</h1>
</header> </header>
<div class="i-position">{{ member.position }} <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,7 +2,7 @@
{% load thumbnail %} {% load thumbnail %}
{% if obj.logo %} {% 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=""> <img src="{{ im.url }}" width="{{ im.width }}" height="{{ im.height }}" class="pic" alt="">
{% endthumbnail %} {% endthumbnail %}
{% else %} {% else %}

@ -2,7 +2,7 @@
{% load thumbnail %} {% load thumbnail %}
{% if obj.logo %} {% 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=""> <img src="{{ im.url }}" width="{{ im.width }}" height="{{ im.height }}" class="pic" alt="">
{% endthumbnail %} {% endthumbnail %}
{% else %} {% else %}

@ -2,7 +2,7 @@
{% load thumbnail %} {% load thumbnail %}
{% if obj.logo %} {% 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=""> <img src="{{ im.url }}" width="{{ im.width }}" height="{{ im.height }}" class="pic" alt="">
{% endthumbnail %} {% endthumbnail %}
{% else %} {% 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,7 +2,7 @@
{% load thumbnail %} {% load thumbnail %}
{% if obj.logo %} {% 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=""> <img src="{{ im.url }}" width="{{ im.width }}" height="{{ im.height }}" class="pic" alt="">
{% endthumbnail %} {% endthumbnail %}
{% else %} {% else %}

@ -7,9 +7,9 @@
<div class="h-booking"> <div class="h-booking">
<header class="clearfix"> <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> <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> <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> </header>
<ul> <ul>

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

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

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

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

@ -40,13 +40,13 @@
</aside> </aside>
<div class="i-info"> <div class="i-info">
<header> <header>
<div class="i-title"> <h1 class="i-title">
{% if exposition.main_title %} {% if exposition.main_title %}
{{ exposition.main_title|safe }} {{ exposition.name|safe }} {{ exposition.main_title|safe }} {{ exposition.name|safe }}
{% else %} {% else %}
{{ exposition.name|safe }} {{ exposition.name|safe }}
{% endif %} {% endif %}
</div> </h1>
</header> </header>
<div class="i-date"> <div class="i-date">
{% with obj=exposition %} {% with obj=exposition %}
@ -150,7 +150,7 @@
{% with photos=exposition.get_photos|slice:"5" %} {% with photos=exposition.get_photos|slice:"5" %}
<hr /> <hr />
<div class="i-photo-slides"> <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"> <div id="ps-photo-gallery" class="ps-photo-gallery swiper-container">
<ul class="swiper-wrapper"> <ul class="swiper-wrapper">
{% for photo in photos %} {% for photo in photos %}
@ -170,13 +170,13 @@
{% if exposition.description %} {% if exposition.description %}
<div class="i-event-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 class="ied-text">{{ exposition.description|safe|linebreaks }}</div>
</div> </div>
<hr /> <hr />
{% endif %} {% endif %}
<div class="i-event-additional clearfix"> <div class="i-event-additional clearfix">
<div class="sect-title">{% trans 'Дополнительная информация' %}</div> <h2 class="sect-title">{% trans 'Дополнительная информация' %}</h2>
<ul class="e-docs"> <ul class="e-docs">
{% if exposition.business_program.exists %} {% if exposition.business_program.exists %}
<li><a href="{{ exposition.get_permanent_url }}program/">{% trans 'Деловая программа' %}</a></li> <li><a href="{{ exposition.get_permanent_url }}program/">{% trans 'Деловая программа' %}</a></li>
@ -231,7 +231,7 @@
{% if companies %} {% if companies %}
{# есть участники #} {# есть участники #}
<header> <header>
<div class="im-title">{% trans 'Участники' %}</div> <h2 class="im-title">{% trans 'Участники' %}</h2>
<a class="more" href="{{ exposition.get_permanent_url }}members/">{% trans 'Все участники' %}</a> <a class="more" href="{{ exposition.get_permanent_url }}members/">{% trans 'Все участники' %}</a>
</header> </header>
@ -253,7 +253,7 @@
{% else %} {% else %}
{# нет участников #} {# нет участников #}
<header> <header>
<div class="im-title">{% trans 'Участники' %}</div> <h2 class="im-title">{% trans 'Участники' %}</h2>
<p>{% trans 'Привлекайте целевых посетителей на стенд' %}</p> <p>{% trans 'Привлекайте целевых посетителей на стенд' %}</p>
<p><a href="#pw-advertise" class="button icon-up pw-open" >Рекламировать участника</a></p> <p><a href="#pw-advertise" class="button icon-up pw-open" >Рекламировать участника</a></p>
</header> </header>
@ -263,7 +263,7 @@
<div class="im-visitors"> <div class="im-visitors">
{% with visitors=exposition.users.all|slice:":17" %} {% with visitors=exposition.users.all|slice:":17" %}
<header> <header>
<div class="im-title">{% trans 'Посетители' %}</div> <h2 class="im-title">{% trans 'Посетители' %}</h2>
</header> </header>
<ul id="visitors-list"> <ul id="visitors-list">
{% if visitors %} {% if visitors %}
@ -322,7 +322,7 @@
<hr /> <hr />
{% if exposition.get_nearest_events|slice:":6" %} {% if exposition.get_nearest_events|slice:":6" %}
<div class="e-cat"> <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"> <ul class="cat-list cl-exhibitions">
{% for exp in exposition.get_nearest_events %} {% for exp in exposition.get_nearest_events %}
<li class="cl-item"> <li class="cl-item">
@ -369,7 +369,7 @@
</div> </div>
{% endif %} {% endif %}
<div class="e-cat look-also"> <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 }}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 }}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> <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"> <div class="i-info">
<header> <header>
<div class="i-title"> <h1 class="i-title">
{% if exposition.main_title %} {% if exposition.main_title %}
{{ exposition.main_title|safe }} {{ exposition.name|safe }} {{ exposition.main_title|safe }} {{ exposition.name|safe }}
{% else %} {% else %}
{{ exposition.name|safe }} {{ exposition.name|safe }}
{% endif %} {% endif %}
</div> </h1>
</header> </header>
<div class="i-date"> <div class="i-date">
{% with obj=exposition %} {% with obj=exposition %}
@ -128,7 +128,7 @@
{% with photos=exposition.get_photos|slice:"5" %} {% with photos=exposition.get_photos|slice:"5" %}
<hr /> <hr />
<div class="i-photo-slides"> <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"> <div id="ps-photo-gallery" class="ps-photo-gallery swiper-container">
<ul class="swiper-wrapper"> <ul class="swiper-wrapper">
{% for photo in photos %} {% for photo in photos %}
@ -146,7 +146,7 @@
{% endwith %} {% endwith %}
{% endif %} {% endif %}
<div class="i-event-description"> <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 %} {% if exposition.description %}
<div class="ied-text">{{ exposition.description|safe|linebreaks }}</div> <div class="ied-text">{{ exposition.description|safe|linebreaks }}</div>
{%else %} {%else %}
@ -157,7 +157,7 @@
<hr /> <hr />
{% include 'client/includes/banners/expo_detail.html' %} {% include 'client/includes/banners/expo_detail.html' %}
<div id="additional" class="i-event-additional clearfix"> <div id="additional" class="i-event-additional clearfix">
<div class="sect-title">{% trans 'Дополнительная информация' %}</div> <h2 class="sect-title">{% trans 'Дополнительная информация' %}</h2>
<ul class="e-docs"> <ul class="e-docs">
{% if exposition.business_program.exists %} {% if exposition.business_program.exists %}
<li><a href="{{ exposition.get_permanent_url }}program/">{% trans 'Деловая программа' %}</a></li> <li><a href="{{ exposition.get_permanent_url }}program/">{% trans 'Деловая программа' %}</a></li>
@ -230,7 +230,7 @@
{% if companies %} {% if companies %}
{# есть участники #} {# есть участники #}
<header> <header>
<div class="im-title">{% trans 'Участники' %}</div> <h2 class="im-title">{% trans 'Участники' %}</h2>
<a class="more" href="{{ exposition.get_permanent_url }}members/">{% trans 'Все участники' %}</a> <a class="more" href="{{ exposition.get_permanent_url }}members/">{% trans 'Все участники' %}</a>
</header> </header>
@ -252,7 +252,7 @@
{% else %} {% else %}
{# нет участников #} {# нет участников #}
<header> <header>
<div class="im-title">{% trans 'Участники' %}</div> <h2 class="im-title">{% trans 'Участники' %}</h2>
<p>{% trans 'Привлекайте целевых посетителей на стенд' %}</p> <p>{% trans 'Привлекайте целевых посетителей на стенд' %}</p>
<p><a href="#pw-advertise" class="button icon-up pw-open" >{% trans 'Рекламировать участника' %}</a></p> <p><a href="#pw-advertise" class="button icon-up pw-open" >{% trans 'Рекламировать участника' %}</a></p>
</header> </header>
@ -262,7 +262,7 @@
<div class="im-visitors"> <div class="im-visitors">
{% with visitors=exposition.users.all|slice:":17" %} {% with visitors=exposition.users.all|slice:":17" %}
<header> <header>
<div class="im-title">{% trans 'Посетители' %}</div> <h2 class="im-title">{% trans 'Посетители' %}</h2>
</header> </header>
<ul id="visitors-list"> <ul id="visitors-list">
{% if visitors %} {% if visitors %}
@ -319,7 +319,7 @@
<hr /> <hr />
{% if exposition.get_nearest_events|slice:":6" %} {% if exposition.get_nearest_events|slice:":6" %}
<div class="e-cat"> <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"> <ul class="cat-list cl-exhibitions">
{% for exp in exposition.get_nearest_events %} {% for exp in exposition.get_nearest_events %}
<li class="cl-item"> <li class="cl-item">
@ -377,7 +377,7 @@
{% include 'client/includes/banners/detail_inner_3.html' %} {% include 'client/includes/banners/detail_inner_3.html' %}
{% endif %} {% endif %}
<div class="e-cat look-also"> <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 }}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 }}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> <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"> <div class="i-info">
<header> <header>
<div class="i-title"> <h1 class="i-title">
{% if exposition.main_title %} {% if exposition.main_title %}
{{ exposition.main_title|safe }} {{ exposition.main_title|safe }}
{% else %} {% else %}
{{ exposition.name|safe }} {{ exposition.name|safe }}
{% endif %} {% endif %}
</div> </h1>
</header> </header>
<div class="i-date"> <div class="i-date">
@ -69,7 +69,7 @@
</div> </div>
</div> </div>
<div class="e-price"> <div class="e-price">
<div class="sect-title">{% trans 'Стоимость посещения и участия' %}</div> <h2 class="sect-title">{% trans 'Стоимость посещения и участия' %}</h2>
<div class="ep-wrap"> <div class="ep-wrap">
<div class="e-price-wrap"> <div class="e-price-wrap">

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

@ -10,9 +10,6 @@
<li><a href="{{ obj.get_permanent_url }}service/{{ service.url }}/">{{ service.name }}</a></li> <li><a href="{{ obj.get_permanent_url }}service/{{ service.url }}/">{{ service.name }}</a></li>
{% endfor %} {% endfor %}
{% endwith %} {% 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 %} {% else %}
<li><a target="_blank" href="{{ obj.paid.oficial_link.get_object_url }}">{% trans 'Официальный сайт' %}</a></li> <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> <li><a target="_blank" href="{{ obj.paid.tickets_link.get_object_url }}">{% trans 'Билеты на выставку' %}</a></li>

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

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

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

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

@ -23,7 +23,7 @@
</section> </section>
{% endblock %} {% endblock %}
{% block search %} {% 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 %} {% endblock %}
{% block catalog %} {% block catalog %}
<section class="layout mp-catalog"> <section class="layout mp-catalog">

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

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

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

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

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

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

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

@ -230,7 +230,7 @@
<hr /> <hr />
{% comment %} {% comment %}
<div class="i-staff"> <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"> <div class="i-staff-list">
@ -293,7 +293,7 @@
<div class="rq-to-hide"> <div class="rq-to-hide">
<div class="s-comments"> <div class="s-comments">
<div class="sect-title">{% trans 'Отзывы клиентов' %}:</div> <h2 class="sect-title">{% trans 'Отзывы клиентов' %}:</h2>
<div class="cat-list sc-comments"> <div class="cat-list sc-comments">
<div class="cl-item"> <div class="cl-item">
@ -358,10 +358,7 @@
<div class="i-sub-articles"> <div class="i-sub-articles">
<ul> <ul>
{% if object %} {% 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/remote/">{% trans 'Заочное посещение' %}</a></li>
<li><a href="{{ object.get_permanent_url }}service/participation/">{% trans 'Участие в выставке' %}</a></li> <li><a href="{{ object.get_permanent_url }}service/participation/">{% trans 'Участие в выставке' %}</a></li>
{% else %} {% else %}

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

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

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

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

@ -90,7 +90,7 @@ body.pr {
margin:0 auto; margin:0 auto;
padding:0 18px; padding:0 18px;
} }
.pr-center:after{ display:block; clear:both; content:''; } .pr-center:after{ display:block; clear:both; content:'';}
#pr-header{ #pr-header{
overflow:hidden; overflow:hidden;
min-height:98px; min-height:98px;
@ -140,7 +140,7 @@ body.pr {
margin:0 0 5px; margin:0 0 5px;
} }
.pr-social{ .pr-social{
margin:0; padding:0; list-style:none; margin:0; padding:0; list-style:none;
font-size: 0; font-size: 0;
line-height:0; line-height:0;
} }
@ -211,12 +211,12 @@ body.pr {
.pr-input:first-child{ .pr-input:first-child{
margin:0; margin:0;
} }
.pr-input:after{ content:''; .pr-input:after{ content:'';
position:absolute; position:absolute;
top:13px; top:13px;
right:14px; right:14px;
width:20px; width:20px;
height:20px; } height:20px;}
.pr-input.pr-name:after{ .pr-input.pr-name:after{
background:url(../images/pr-icon02.png) no-repeat 50% 50%; background:url(../images/pr-icon02.png) no-repeat 50% 50%;
} }
@ -307,7 +307,7 @@ body.pr {
color:#060606; color:#060606;
} }
.pr-interesting-list{ .pr-interesting-list{
margin:0; padding:0; list-style:none; margin:0; padding:0; list-style:none;
font-size: 17px; font-size: 17px;
line-height:21px; line-height:21px;
color:#010100; color:#010100;
@ -332,7 +332,7 @@ body.pr {
margin:0 0 38px; margin:0 0 38px;
} }
.pr-interesting-col{ .pr-interesting-col{
margin:0 0 0 8px; padding:0; list-style:none; margin:0 0 0 8px; padding:0; list-style:none;
float:left; float:left;
width:285px; width:285px;
} }
@ -415,7 +415,7 @@ div.pr-radio.disabled + label{
float:left; float:left;
width:300px; width:300px;
margin: 0 85px 0 0; margin: 0 85px 0 0;
padding:0; list-style:none; padding:0; list-style:none;
} }
.pr-subscription-list li{ .pr-subscription-list li{
margin:0 0 27px; margin:0 0 27px;

Loading…
Cancel
Save