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.
32 lines
1.2 KiB
32 lines
1.2 KiB
{% extends 'base_catalog.html' %}
|
|
{% load i18n %}
|
|
|
|
{% block content_list %}
|
|
|
|
<div class="page-title">
|
|
<h1>{% trans "Запрашиваемая страница не найдена" %}</h1>
|
|
</div>
|
|
<div class="m-article error-404">
|
|
<span class="figure">404:</span>
|
|
<p class="title">{% trans "Возможно у нее изменился адрес или же она была удалена.<br> Воспользуйтесь поиском по названию, расширенной формой поиска или каталогом событий." %}</p>
|
|
<div class="clearfix"></div>
|
|
<hr/>
|
|
<section>
|
|
<h2>{% trans "Каталог выставок" %}</h2>
|
|
<ul class="items-list">
|
|
{% for item in expo_themes %}
|
|
<li><i class="fa fa-circle"></i><a href="/expo/theme/{{ item.url }}/">{{ item.name }} ({{ item.expo_count }})</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</section>
|
|
<hr/>
|
|
<section >
|
|
<h2>{% trans "Каталог конференций" %}</h2>
|
|
<ul class="items-list">
|
|
{% for item in conf_themes %}
|
|
<li><i class="fa fa-circle"></i><a href="/conference/theme/{{ item.url }}/">{{ item.name }} ({{ item.conference_count }})</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</section>
|
|
</div>
|
|
{% endblock %}
|
|
|