5bb6a85b90
Reuse same search form and behavior for dashboard#projects, group#projects and admin#projects. Repsect all other options like sorting, personal filter when search projects by name. Create FilterableList JS class to handle identical behaviour of projects and groups lists. This change also makes filtering and sorting availabe on explore#projects and explore#groups no matter if you are logged in or not. Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
14 lines
497 B
Text
14 lines
497 B
Text
.top-area
|
|
%ul.nav-links
|
|
= nav_link(page: dashboard_groups_path) do
|
|
= link_to dashboard_groups_path, title: 'Your groups' do
|
|
Your Groups
|
|
= nav_link(page: explore_groups_path) do
|
|
= link_to explore_groups_path, title: 'Explore groups' do
|
|
Explore Groups
|
|
.nav-controls
|
|
= render 'shared/groups/search_form'
|
|
= render 'shared/groups/dropdown'
|
|
- if current_user.can_create_group?
|
|
= link_to new_group_path, class: "btn btn-new" do
|
|
New Group
|