You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.2 KiB
36 lines
1.2 KiB
{% extends 'client/base_catalog.html' %}
|
|
{% load i18n %}
|
|
{% load thumbnail %}
|
|
{% load template_filters %}
|
|
|
|
{% block og %}
|
|
<meta property="og:image" content="{% thumbnail object.get_logo '500' %}">
|
|
<meta property="og:title" content="{{ object.name }}">
|
|
<meta property="og:description" content="{{ object.main_title }}">
|
|
<meta property="og:url" content="{{ request.build_absolute_uri }}">
|
|
{% endblock %}
|
|
|
|
{% block bread_scrumbs %}
|
|
<div class="bread-crumbs">
|
|
<a href="/">{% trans 'Главная страница' %}</a>
|
|
<a href="{{ object.catalog }}">{% trans 'Выставки' %}</a>
|
|
<a href="{{ object.catalog }}country/{{ object.country.url }}/">{{ object.country }}</a>
|
|
<a href="{{ object.catalog }}city/{{ object.city.url }}/">{{ object.city }}</a>
|
|
<strong>{{ object.name }}</strong>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block page_title %}
|
|
{% endblock %}
|
|
|
|
{% block content_list %}
|
|
{% if object.paid_new_id and object.paid_new.public %}
|
|
{% include 'client/includes/exposition/expo_paid.html' with exposition=object %}
|
|
{% else %}
|
|
{% include 'client/includes/exposition/exposition_object.html' with exposition=object %}
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
{% block paginator %}
|
|
|
|
{% endblock %}
|
|
|