Skip to content
Snippets Groups Projects
Commit 12d71b12 authored by Anton's avatar Anton
Browse files

убрал лишнее в bootstrap

parent 0548d9ab
Branches
Tags
No related merge requests found
......@@ -242,27 +242,13 @@ Route::set('stdnt:profile', 'student/profile')
/* --------------- Преподаватели ---------------- */
Route::set('map:show', 'map/<id>', array('id' => '[0-9]+'))
->defaults(array(
'directory' => 'teacher',
'controller' => 'map',
'action' => 'show'
));
Route::set('map:edit', 'map/edit/<id>', array('id' => '[0-9]+'))
Route::set('map:edit', 'map/<id>', array('id' => '[0-9]+'))
->defaults(array(
'directory' => 'teacher',
'controller' => 'map',
'action' => 'edit'
));
Route::set('map:create', 'map/create')
->defaults(array(
'directory' => 'teacher',
'controller' => 'map',
'action' => 'create'
));
Route::set('rating', 'rating/<id>', array('id' => '[0-9]+'))
->defaults(array(
'directory' => 'teacher',
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment