42 lines
1.7 KiB
Plaintext
42 lines
1.7 KiB
Plaintext
.block
|
|
.secondary-navigation
|
|
%ul.wat-cf
|
|
%li.first= link_to t("layout.projects.list"), platform_repository_path(@platform, @repository) + "#projects"
|
|
%li= link_to t("layout.projects.new"), new_platform_repository_project_path(@platform, @repository)
|
|
%li.active= link_to t("layout.projects.show"), platform_repository_project_path(@platform, @repository, @project)
|
|
%li= link_to "git-repo", platform_repository_project_repo_path(@platform, @repository, @project)
|
|
%li= link_to t("layout.projects.build"), build_platform_repository_project_path(@platform, @repository, @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.repository")
|
|
\:
|
|
= @project.repository.name
|
|
.wat-cf
|
|
= link_to image_tag("web-app-theme/icons/cross.png", :alt => t("layout.delete")) + " " + t("layout.delete"), platform_repository_project_path(@platform, @repository, @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"), platform_repository_project_path(@platform, @repository, @project) + "#build_lists"
|
|
%li= link_to t("layout.build_lists.all"), platform_repository_project_build_lists_path(@platform, @repository, @project)
|
|
|
|
.content
|
|
|
|
= render :partial => "build_lists/build_lists", :object => @current_build_lists
|
|
|
|
- content_for :sidebar, render(:partial => 'sidebar')
|