index.html.haml 1018 Bytes
- unless @projects.empty?
  .row
    .span4
      %div.leftbar.ui-box
        %h5
          Projects
          - 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
              %h4
                %span.ico.project
                = truncate(project.name, :length => 22)
    .span12.right
      .show_holder.ui-box.padded
        .loading

- else
  %h2 Nothing 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});
    });