2015-09-25 12:07:36 +05:30
|
|
|
= content_for :meta_tags do
|
|
|
|
- if current_user
|
|
|
|
= auto_discovery_link_tag(:atom, dashboard_projects_url(format: :atom, private_token: current_user.private_token), title: "All activity")
|
|
|
|
|
|
|
|
- page_title "Projects"
|
2015-12-23 02:04:40 +05:30
|
|
|
- header_title "Projects", dashboard_projects_path
|
2015-09-25 12:07:36 +05:30
|
|
|
|
|
|
|
= render 'dashboard/projects_head'
|
|
|
|
|
|
|
|
- if @last_push
|
|
|
|
= render "events/event_last_push", event: @last_push
|
|
|
|
|
|
|
|
- if @projects.any?
|
|
|
|
= render 'projects'
|
|
|
|
- else
|
|
|
|
= render "zero_authorized_projects"
|