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.
35 lines
1.2 KiB
35 lines
1.2 KiB
{% extends 'base_catalog.html' %}
|
|
{% load i18n thumbnail %}
|
|
|
|
{% block og %}
|
|
<meta property="og:image" content="//{{ request.get_host }}{% 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/conference/conference_paid.html' with event=object %}
|
|
{% else %}
|
|
{% include 'client/includes/conference/conference_object.html' with event=object %}
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
{% block paginator %}
|
|
|
|
{% endblock %}
|
|
|