gitlabhq/app/views/dashboard/index.html.haml

51 lines
1.5 KiB
Plaintext
Raw Normal View History

2012-03-05 23:29:40 +01:00
- if @projects.any?
.projects
.activities.span8
= render "events/event_last_push", event: @last_push
.event_filter
= event_filter_link EventFilter.push, 'Push events'
= event_filter_link EventFilter.merged, 'Merge events'
= event_filter_link EventFilter.comments, 'Comments'
= event_filter_link EventFilter.team, 'Team'
- if @events.any?
2012-07-21 09:23:05 +02:00
.content_list= render @events
- else
%p.nothing_here_message Projects activity will be displayed here
2012-07-21 09:23:05 +02:00
.loading.hide
.side
2012-10-02 19:42:15 +02:00
- if @groups.present?
2012-10-02 18:37:53 +02:00
= render "groups", groups: @groups
= render "projects", projects: @projects
%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
%hr
.gitlab-promo
= link_to "Homepage", "http://gitlabhq.com"
= link_to "Blog", "http://blog.gitlabhq.com"
= link_to "@gitlabhq", "https://twitter.com/gitlabhq"
- else
%h3.nothing_here_message There are no projects you have access to.
2012-03-05 23:29:40 +01:00
%br
%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
projects. Click on button below to add a new one
2012-03-05 23:29:40 +01:00
.link_holder
= link_to new_project_path, class: "btn primary" do
New Project »
- else
If you will be added to project - it will be displayed here
2012-07-21 09:23:05 +02:00
:javascript
2012-07-21 09:23:05 +02:00
$(function(){ Pager.init(20); });