Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/projects/index.html.haml')
-rw-r--r--app/views/projects/index.html.haml32
1 files changed, 9 insertions, 23 deletions
diff --git a/app/views/projects/index.html.haml b/app/views/projects/index.html.haml
index e163851fd46..fee6363de09 100644
--- a/app/views/projects/index.html.haml
+++ b/app/views/projects/index.html.haml
@@ -1,22 +1,25 @@
- if @projects.any?
.row
- .span4
+ .span11
+ = render @events
+ .span5.right
%div.leftbar.ui-box
%h5
Projects
+ %small
+ (#{@projects.count})
- if current_user.can_create_project?
%span.right
= link_to new_project_path, :class => "btn very_small info" do
New Project
.content_list
- @projects.each do |project|
- = link_to project_path(project), :remote => true, :class => dom_class(project) do
+ = link_to project_path(project), :class => dom_class(project) do
%h4
%span.ico.project
- = truncate(project.name, :length => 22)
- .span12.right
- .show_holder.ui-box.padded
- .loading
+ = truncate(project.name, :length => 25)
+ %span.right
+ →
- else
%h3 Nothing here
@@ -31,20 +34,3 @@
New Project ยป
- else
If you will be added to project - it will be displayed here
-
-
-:javascript
- $(function(){
- $("a.project").live("ajax:before", function() {
- $(".show_holder").html("<div class='loading'>");
- $('a.project').removeClass("active");
- $(this).addClass("active");
- });
- $('a.project:first-child').trigger("click");
- });
-
-- if @projects.count == @limit
- :javascript
- $(function(){
- Pager.init(#{@limit});
- });