2012-03-05 23:29:40 +01:00
|
|
|
- if @projects.any?
|
2012-04-20 18:11:49 +02:00
|
|
|
.projects
|
|
|
|
.activities.span8
|
2012-04-14 10:20:45 +02:00
|
|
|
- if current_user.require_ssh_key?
|
|
|
|
.alert.alert-error.padded
|
|
|
|
%span
|
2012-06-04 00:37:27 +02:00
|
|
|
You wont be able to pull/push project code unless you
|
2012-04-14 10:20:45 +02:00
|
|
|
%strong
|
2012-06-04 00:37:27 +02:00
|
|
|
= link_to new_key_path, :class => "vlink" do
|
2012-04-14 10:20:45 +02:00
|
|
|
add new key
|
|
|
|
to your profile
|
|
|
|
- if @events.any?
|
|
|
|
= render @events
|
2012-06-04 00:37:27 +02:00
|
|
|
- else
|
2012-06-12 13:58:44 +02:00
|
|
|
%h4.nothing_here_message Projects activity will be displayed here
|
2012-04-20 18:11:49 +02:00
|
|
|
.side
|
2012-06-12 16:43:16 +02:00
|
|
|
= render "events/event_last_push", :event => @last_push
|
2012-04-20 18:11:49 +02:00
|
|
|
.projects_box
|
2012-03-05 23:29:40 +01:00
|
|
|
%h5
|
|
|
|
Projects
|
2012-03-19 23:05:35 +01:00
|
|
|
%small
|
2012-04-20 18:11:49 +02:00
|
|
|
(#{@projects.total_count})
|
2012-03-05 23:29:40 +01:00
|
|
|
- if current_user.can_create_project?
|
|
|
|
%span.right
|
2012-06-04 00:37:27 +02:00
|
|
|
= link_to new_project_path, :class => "btn very_small info" do
|
2012-05-19 11:00:46 +02:00
|
|
|
%i.icon-plus
|
2012-03-05 23:29:40 +01:00
|
|
|
New Project
|
2012-04-20 18:11:49 +02:00
|
|
|
- @projects.each do |project|
|
|
|
|
= link_to project_path(project), :class => dom_class(project) do
|
|
|
|
%h4
|
|
|
|
%span.ico.project
|
|
|
|
= truncate(project.name, :length => 25)
|
|
|
|
%span.right
|
|
|
|
→
|
|
|
|
.bottom= paginate @projects, :theme => "gitlab"
|
2012-03-05 23:29:40 +01:00
|
|
|
|
2012-06-12 22:13:42 +02:00
|
|
|
%hr
|
|
|
|
%div
|
|
|
|
%span.rss-icon
|
|
|
|
= link_to dashboard_path(:atom, { :private_token => current_user.private_token }) do
|
|
|
|
= image_tag "rss_ui.png", :title => "feed"
|
|
|
|
%strong News Feed
|
|
|
|
|
2012-06-04 00:37:27 +02:00
|
|
|
- else
|
2012-06-11 07:52:44 +02:00
|
|
|
%h3.nothing_here_message There are no projects you have access to.
|
2012-03-05 23:29:40 +01:00
|
|
|
%br
|
2012-06-11 07:52:44 +02:00
|
|
|
%h4.nothing_here_message
|
|
|
|
- if current_user.can_create_project?
|
2012-03-05 23:29:40 +01:00
|
|
|
You can create up to
|
|
|
|
= current_user.projects_limit
|
2012-06-11 07:52:44 +02:00
|
|
|
projects. Click on button below to add a new one
|
2012-03-05 23:29:40 +01:00
|
|
|
.link_holder
|
2012-06-11 07:52:44 +02:00
|
|
|
= link_to new_project_path, :class => "btn primary" do
|
2012-06-04 00:37:27 +02:00
|
|
|
New Project »
|
2012-06-11 07:52:44 +02:00
|
|
|
- else
|
|
|
|
If you will be added to project - it will be displayed here
|