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.
25 lines
887 B
25 lines
887 B
{% extends 'base_catalog.html' %}
|
|
{% load i18n %}
|
|
|
|
{% 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>
|
|
<a href="{{ object.get_permanent_url }}">{{ object.name }}</a>
|
|
<strong>{% trans 'Участники' %}</strong>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
|
|
{% block page_title %}
|
|
{% endblock %}
|
|
|
|
{% block content_list %}
|
|
{% include 'client/includes/exposition/members.html' with object_list=object_list %}
|
|
{% endblock %}
|
|
|
|
{% block paginator %}
|
|
{% include 'client/includes/catalog_paginator.html' with page_obj=page_obj %}
|
|
{% endblock %} |