diff --git a/.gitignore b/.gitignore
index 5ed6258..3b21a7e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
+protected/config/db.php
assets
runtime
images
diff --git a/protected/views/service/category.php b/protected/views/service/category.php
index 40f919e..28d353d 100644
--- a/protected/views/service/category.php
+++ b/protected/views/service/category.php
@@ -27,6 +27,7 @@
echo '
', CHtml::link($category->i18n->name, array('service/category', 'category' => $category->link)), '';
}
}
+ echo '', CHtml::link('Расчет стоимости ТО', '/stoFilter'), '';
?>
diff --git a/protected/views/service/center.php b/protected/views/service/center.php
index 0ffb622..79d497d 100644
--- a/protected/views/service/center.php
+++ b/protected/views/service/center.php
@@ -16,6 +16,7 @@
foreach ($this->getServiceCategories() as $category) {
echo '', CHtml::link($category->i18n->name, array('service/category', 'category' => $category->link)), '';
}
+ echo '', CHtml::link('Расчет стоимости ТО', '/stoFilter'), '';
?>
diff --git a/protected/views/service/index.php b/protected/views/service/index.php
index f75d47b..d81612d 100644
--- a/protected/views/service/index.php
+++ b/protected/views/service/index.php
@@ -17,6 +17,7 @@
foreach ($this->getServiceCategories() as $category) {
echo '', CHtml::link($category->i18n->name, array('service/category', 'category' => $category->link)), '';
}
+ echo '', CHtml::link('Расчет стоимости ТО', '/stoFilter'), '';
?>
diff --git a/protected/views/service/view.php b/protected/views/service/view.php
index f1367d0..d2de322 100644
--- a/protected/views/service/view.php
+++ b/protected/views/service/view.php
@@ -29,7 +29,9 @@
} else {
echo '', CHtml::link($category->i18n->name, array('service/category', 'category' => $category->link)), '';
}
+
}
+ echo '', CHtml::link('Расчет стоимости ТО', '/stoFilter'), '';
?>
--
libgit2 0.21.4