2015-12-23 02:04:40 +05:30
|
|
|
= content_for :flash_message do
|
|
|
|
= render 'shared/project_limit'
|
2016-01-14 18:37:52 +05:30
|
|
|
.top-area
|
|
|
|
%ul.left-top-menu
|
|
|
|
= nav_link(page: [dashboard_projects_path, root_path]) do
|
|
|
|
= link_to dashboard_projects_path, title: 'Home', class: 'shortcuts-activity', data: {placement: 'right'} do
|
|
|
|
Your Projects
|
|
|
|
= nav_link(page: starred_dashboard_projects_path) do
|
|
|
|
= link_to starred_dashboard_projects_path, title: 'Starred Projects', data: {placement: 'right'} do
|
|
|
|
Starred Projects
|
|
|
|
= nav_link(page: [explore_root_path, trending_explore_projects_path, starred_explore_projects_path, explore_projects_path], html_options: { class: 'hidden-xs' }) do
|
|
|
|
= link_to explore_root_path, title: 'Explore', data: {placement: 'right'} do
|
|
|
|
Explore Projects
|
2015-12-23 02:04:40 +05:30
|
|
|
|
2016-01-14 18:37:52 +05:30
|
|
|
.projects-search-form
|
|
|
|
= search_field_tag :filter_projects, nil, placeholder: 'Filter by name...', class: 'projects-list-filter form-control hidden-xs', spellcheck: false
|
|
|
|
- if current_user.can_create_project?
|
|
|
|
= link_to new_project_path, class: 'btn btn-green' do
|
|
|
|
%i.fa.fa-plus
|
|
|
|
New Project
|