.block .secondary-navigation %ul.wat-cf %li.first= link_to t("layout.projects.list"), projects_path %li= link_to t("layout.projects.new"), new_project_path %li.active= link_to t("layout.projects.show"), project_path(@project) %li= link_to "git-repo", project_repo_path(@project) %li= link_to t("layout.projects.build"), build_project_path(@project) .content .inner %p %b = t("activerecord.attributes.project.name") \: = @project.name %p %b = t("activerecord.attributes.project.unixname") \: = @project.unixname %p %b = t("activerecord.attributes.project.owner") \: = link_to @project.owner.try(:name), url_for(@project.owner) %p %b = t("activerecord.attributes.project.visibility") \: = @project.visibility %p %b = t("activerecord.attributes.project.repository") \: = git_repo_url @project.git_repo_name .wat-cf = link_to image_tag("web-app-theme/icons/application_edit.png", :alt => t("layout.edit")) + " " + t("layout.edit"), edit_project_path(@project), :class => "button" = link_to image_tag("web-app-theme/icons/cross.png", :alt => t("layout.delete")) + " " + t("layout.delete"), project_path(@project), :method => "delete", :class => "button", :confirm => t("layout.projects.confirm_delete") %a{ :name => "build_lists"} .block .secondary-navigation %ul.wat-cf %li.first.active= link_to t("layout.build_lists.current"), project_path(@project) + "#build_lists" %li= link_to t("layout.build_lists.all"), project_build_lists_path(@project) .content = render :partial => "build_lists/build_lists", :object => @current_build_lists - content_for :sidebar, render('sidebar')