commit
de88643a09
3 changed files with 93 additions and 13 deletions
@ -1,17 +1,31 @@ |
||||
{% extends 'base_catalog.html' %} |
||||
|
||||
{% block content_list %} |
||||
<div>Страница не найдена</div> |
||||
|
||||
<ul> |
||||
{% for item in expo_themes %} |
||||
<li><a href="/expo/theme/{{ item.url }}/">{{ item.name }} ({{ item.expo_count }})</a></li> |
||||
{% endfor %} |
||||
</ul> |
||||
|
||||
<ul> |
||||
{% for item in conf_themes %} |
||||
<li><a href="/conference/theme/{{ item.url }}/">{{ item.name }} ({{ item.conference_count }})</a></li> |
||||
{% endfor %} |
||||
</ul> |
||||
<div class="page-title"> |
||||
<h1>Запрашиваемая страница не найдена</h1> |
||||
</div> |
||||
<div class="m-article error-404"> |
||||
<span class="figure">404:</span> |
||||
<p class="title">Возможно у нее изменился адрес или же она была удалена.<br> Воспользуйтесь поиском по названию, расширенной формой поиска или каталогом событий.</p> |
||||
<div class="clearfix"></div> |
||||
<hr/> |
||||
<section> |
||||
<h2>Каталог выставок</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>Каталог конференций</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 %} |
||||
File diff suppressed because one or more lines are too long
Loading…
Reference in new issue