diff --git a/projects/templates/projects/project_detail.html b/projects/templates/projects/project_detail.html
index a5bc0d9..a16a048 100644
--- a/projects/templates/projects/project_detail.html
+++ b/projects/templates/projects/project_detail.html
@@ -1,7 +1,11 @@
{% extends 'partials/base.html' %}
+
{% load staticfiles %}
+{% load humanize %}
+
+
{% block content %}
- {% load humanize %}
+ {% include 'partials/header.html' %}
{{ object }}
@@ -193,7 +197,6 @@
{% for answer in object.answers.all %}
-
{% endfor %}
-
+
-
+ {% include 'partials/pagination.html' %}
+
+ {% include 'partials/footer.html' %}
{% endblock %}
diff --git a/projects/templates/projects/project_list.html b/projects/templates/projects/project_list.html
index 84e7a07..5856acf 100644
--- a/projects/templates/projects/project_list.html
+++ b/projects/templates/projects/project_list.html
@@ -1,207 +1,212 @@
{% extends 'partials/base.html' %}
-{% block content %}
-
-
-
-
-
-
Тип работ:
-
Специализации:
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Расширенный поиск
-
-
-
-
-
-
-
Тип работ:
-
Специализации:
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Требуется допуск (СРО)
+{% block content %}
+ {% include 'partials/header.html' %}
+
+
+
+
+
+
+
+
+
Тип работ:
+
Специализации:
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Расширенный поиск
+
+
+
+
+
+
+
Тип работ:
+
Специализации:
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Требуется допуск (СРО)
+
+
+
+
+
+
+
+ {% for proj in object_list %}
+
+
+
+ {{ proj }}
+
+
+ -
+ Объект "{{ proj.realty.name }}"
+
+ -
+ 2 ответ от имени группы
+
+
+
+ {{ proj.text }}
+
+
+ -
+ {{ proj.created }}
+
+ -
+ 523
+
+ -
+ 523
+
+ -
+ {{ proj.user }}
+
+
+
+
+
+ {{ proj.price }}
+
+
+ -
+ Безопасная сделка
+
+ -
+ Стадия: "П"
+
+ -
+ Отказаться и перемстить
+ в корзину
+
+
+
-
-
-
-
-
-
- {% for proj in object_list %}
-
-
-
- {{ proj }}
-
-
- -
- Объект "{{ proj.realty.name }}"
-
- -
- 2 ответ от имени группы
-
-
-
- {{ proj.text }}
-
-
- -
- {{ proj.created }}
-
- -
- 523
-
- -
- 523
-
- -
- {{ proj.user }}
-
-
-
-
-
- {{ proj.price }}
-
-
- -
- Безопасная сделка
-
- -
- Стадия: "П"
-
- -
- Отказаться и переместить
- в корзину
-
-
-
-
- {% endfor %}
-
-
-
-
-
-
+ {% endfor %}
+
+
+ {% include 'partials/pagination.html' %}
+
+
+ {% include 'partials/footer.html' %}
+
+
{% endblock %}
diff --git a/review/__init__.py b/reviews/__init__.py
similarity index 100%
rename from review/__init__.py
rename to reviews/__init__.py
diff --git a/review/admin.py b/reviews/admin.py
similarity index 100%
rename from review/admin.py
rename to reviews/admin.py
diff --git a/review/apps.py b/reviews/apps.py
similarity index 100%
rename from review/apps.py
rename to reviews/apps.py
diff --git a/review/migrations/0001_initial.py b/reviews/migrations/0001_initial.py
similarity index 100%
rename from review/migrations/0001_initial.py
rename to reviews/migrations/0001_initial.py
diff --git a/review/migrations/0002_auto_20160531_0906.py b/reviews/migrations/0002_auto_20160531_0906.py
similarity index 100%
rename from review/migrations/0002_auto_20160531_0906.py
rename to reviews/migrations/0002_auto_20160531_0906.py
diff --git a/review/migrations/__init__.py b/reviews/migrations/__init__.py
similarity index 100%
rename from review/migrations/__init__.py
rename to reviews/migrations/__init__.py
diff --git a/review/models.py b/reviews/models.py
similarity index 100%
rename from review/models.py
rename to reviews/models.py
diff --git a/review/tests.py b/reviews/tests.py
similarity index 100%
rename from review/tests.py
rename to reviews/tests.py
diff --git a/review/views.py b/reviews/views.py
similarity index 100%
rename from review/views.py
rename to reviews/views.py
diff --git a/specializations/templates/specializations/specialization.html b/specializations/templates/specializations/specialization.html
index 8ae917f..f7ee02c 100644
--- a/specializations/templates/specializations/specialization.html
+++ b/specializations/templates/specializations/specialization.html
@@ -1,4 +1,5 @@
{% extends '_layout.html' %}
+
{% block content %}
Angular setup
diff --git a/specializations/templates/specializations/specialization_detail.html b/specializations/templates/specializations/specialization_detail.html
index efe0bbe..dc01ba3 100644
--- a/specializations/templates/specializations/specialization_detail.html
+++ b/specializations/templates/specializations/specialization_detail.html
@@ -1,4 +1,5 @@
{% extends 'partials/base.html' %}
+
{% block content %}
{{ object }}
{% endblock %}
diff --git a/specializations/templates/specializations/specialization_list.html b/specializations/templates/specializations/specialization_list.html
index 6dada02..c322153 100644
--- a/specializations/templates/specializations/specialization_list.html
+++ b/specializations/templates/specializations/specialization_list.html
@@ -1,4 +1,5 @@
{% extends 'partials/base.html' %}
+
{% block content %}
Специализации
{% load mptt_tags %}
@@ -29,7 +30,7 @@
- {% block js_block %}
+ {% block js %}