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.
 
 
 
 
 
 

17 lines
492 B

{% extends 'base_catalog.html' %}
{% block content_list %}
<div>Страница не найдена</div>
<ul>
{% for item in expo_themes %}
<li><a href="/expo/theme/{{ item.url }}/">{{ item.name }}&nbsp;({{ item.expo_count }})</a></li>
{% endfor %}
</ul>
<ul>
{% for item in conf_themes %}
<li><a href="/conference/theme/{{ item.url }}/">{{ item.name }}&nbsp;({{ item.conference_count }})</a></li>
{% endfor %}
</ul>
{% endblock %}