diff --git a/batiskaf/templates/jinja2/category.jinja b/batiskaf/templates/jinja2/category.jinja
index b43e0a2..457b93e 100644
--- a/batiskaf/templates/jinja2/category.jinja
+++ b/batiskaf/templates/jinja2/category.jinja
@@ -1,6 +1,10 @@
{% extends 'base.jinja' %}
{% block title %}
+ {% if category %}
{{ category.title }}{% for parent in category.get_parents() %} > {{ parent.title }}{% endfor %}
+ {% else %}
+ Поиск по запросу {{ request.GET['q'] }}
+ {% endif %}
{% endblock %}
{% block content %}
@@ -12,7 +16,7 @@
{% endfor %}
{{ category.title }}
{% else %}
-
Поиск
+
Поиск по запросу {{ request.GET['q'] }}
{% endif %}
diff --git a/batiskaf/templates/jinja2/product.jinja b/batiskaf/templates/jinja2/product.jinja
index cbf0cf3..eba61fd 100644
--- a/batiskaf/templates/jinja2/product.jinja
+++ b/batiskaf/templates/jinja2/product.jinja
@@ -1,6 +1,7 @@
{% extends 'base.jinja' %}
{% block title %}
-{{ product.title }} : {% for parent in category.get_parents() %}{{ parent.title }} > {% endfor %}{{ category.title }}
+ {{ product.title }} :
+ {% for parent in category.get_parents() %}{{ parent.title }} > {% endfor %}{{ category.title }}
{% endblock %}
{% block content %}
@@ -20,14 +21,16 @@
{% set im = image.image|thumbnail("80x80") %}
{% set im_big = image.image|thumbnail("398x398") %}

+ src="/static/{{ im.url }}" alt="{{ product.title }}" title="{{ product.title }}"
+ class="img-thumbnail"/>
{% endfor %}
{% set im = product.main_image()|thumbnail("398x398") %}
-