[refs #442] Add sidebar
This commit is contained in:
parent
658bfc2ebd
commit
82b5999e32
|
@ -957,3 +957,11 @@ form.mass_build input[type="checkbox"] {
|
|||
.bottom_20 {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
form.mass_build section.left {
|
||||
margin-left: 50px;
|
||||
}
|
||||
|
||||
form.mass_build section.right {
|
||||
margin-right: 50px;
|
||||
}
|
||||
|
|
|
@ -9,7 +9,7 @@ module ApplicationHelper
|
|||
when controller_name == 'build_lists' && ['new', 'create'].include?(action_name)
|
||||
nil
|
||||
when controller_name == 'platforms' && ['build_all', 'mass_builds'].include?(action_name)
|
||||
nil
|
||||
'right slim'
|
||||
when controller_name == 'platforms' && action_name == 'show'
|
||||
'right bigpadding'
|
||||
when controller_name == 'platforms' && action_name == 'clone'
|
||||
|
|
|
@ -11,7 +11,8 @@
|
|||
%li{:class => (contr == :repositories) ? 'active' : ''}
|
||||
= link_to t("layout.repositories.list_header"), platform_repositories_path(@platform)
|
||||
- if can? :mass_builds, @platform
|
||||
%li= link_to t("layout.platforms.mass_build"), mass_builds_platform_path(@platform)
|
||||
%li{:class => (contr == :platforms && [:mass_builds, :build_all].include?(act)) ? 'active' : ''}
|
||||
= link_to t("layout.platforms.mass_build"), mass_builds_platform_path(@platform)
|
||||
- if can? :read, @platform.products.build
|
||||
%li{:class => (contr == :products) ? 'active' : ''}
|
||||
= link_to t("layout.products.list_header"), platform_products_path(@platform)
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
= render 'submenu'
|
||||
= render 'sidebar'
|
||||
|
||||
= form_for :build, :url => build_all_platform_path(@platform), :html => { :class => 'form mass_build', :method => :post } do |f|
|
||||
%section.left
|
||||
%h3= t("layout.mass_builds.repositories")
|
||||
|
@ -22,7 +25,7 @@
|
|||
%br
|
||||
%br
|
||||
|
||||
%table.tablesorter.unbordered
|
||||
%table.tablesorter
|
||||
%thead
|
||||
%tr
|
||||
%th.lpadding16= t('activerecord.attributes.mass_build.name')
|
||||
|
|
Loading…
Reference in New Issue