79 lines
2.6 KiB
Plaintext
79 lines
2.6 KiB
Plaintext
.block
|
|
.secondary-navigation
|
|
%ul.wat-cf
|
|
%li.first= link_to t("layout.groups.list"), groups_path
|
|
%li= link_to t("layout.groups.new"), new_group_path
|
|
%li.active= link_to t("layout.groups.show"), group_path
|
|
.content
|
|
.inner
|
|
%p
|
|
%b
|
|
Id
|
|
\:
|
|
= @group.id
|
|
%p
|
|
%b
|
|
= t("activerecord.attributes.group.name")
|
|
\:
|
|
= @group.name
|
|
%p
|
|
%b
|
|
= t("activerecord.attributes.group.owner")
|
|
\:
|
|
= link_to @group.owner.name, user_path(@group.owner)
|
|
%p
|
|
%b
|
|
= t("activerecord.attributes.group.created_at")
|
|
\:
|
|
= @group.created_at
|
|
.wat-cf
|
|
= link_to image_tag("web-app-theme/icons/application_edit.png", :alt => t("layout.edit")) + " " + t("layout.edit"), edit_group_path(@group), :class => "button"
|
|
= link_to image_tag("web-app-theme/icons/cross.png", :alt => t("layout.delete")) + " " + t("layout.delete"), group_path(@group), :method => "delete", :class => "button", :confirm => t("layout.groups.confirm_delete")
|
|
|
|
.block
|
|
.secondary-navigation
|
|
%ul.wat-cf
|
|
%li.first.active= link_to t("layout.platforms.list"), platforms_path
|
|
%li= link_to t("layout.platforms.new"), new_group_platform_path(@group)
|
|
.content
|
|
%h2.title
|
|
= t("layout.platforms.list_header")
|
|
.inner
|
|
= render :partial => 'shared/search_form'
|
|
= render :partial => 'platforms/list', :object => @platforms
|
|
.actions-bar.wat-cf
|
|
.actions
|
|
= will_paginate @platforms, :param_name => :platform_page
|
|
|
|
-#.block
|
|
.secondary-navigation
|
|
%ul.wat-cf
|
|
%li.first.active= link_to t("layout.repositories.list"), repositories_path
|
|
%li= link_to t("layout.repositories.new"), new_group_repository_path(@group)
|
|
.content
|
|
%h2.title
|
|
= t("layout.repositories.list_header")
|
|
.inner
|
|
= render :partial => 'shared/search_form'
|
|
= render :partial => 'repositories/list', :object => @repositories
|
|
.actions-bar.wat-cf
|
|
.actions
|
|
= will_paginate @repositories, :param_name => :repository_page
|
|
|
|
.block
|
|
.secondary-navigation
|
|
%ul.wat-cf
|
|
%li.first.active= link_to t("layout.projects.list"), projects_path
|
|
%li= link_to t("layout.projects.new"), new_group_project_path(@group)
|
|
.content
|
|
%h2.title
|
|
= t("layout.projects.list_header")
|
|
.inner
|
|
= render :partial => 'shared/search_form'
|
|
= render :partial => 'projects/list', :object => @projects
|
|
.actions-bar.wat-cf
|
|
.actions
|
|
= will_paginate @projects, :param_name => :project_page
|
|
|
|
- content_for :sidebar, render('sidebar')
|