38 lines
1.6 KiB
Plaintext
38 lines
1.6 KiB
Plaintext
= form_for [@project, @build_list], :html => { :class => :form, :method => :post } do |f|
|
|
%section.left
|
|
%h3= t("activerecord.attributes.build_list.project_version")
|
|
.lineForm= f.select :project_version, @project.versions
|
|
%h3= t("activerecord.attributes.build_list.bpl")
|
|
.base_platforms
|
|
- Platform.main.each do |bpl|
|
|
.both
|
|
= check_box_tag "bpls[]", bpl.id, (params[:bpls]||[]).include?(bpl.id.to_s), :class => 'build_bpl_ids', :id => "bpls_#{bpl.id}"
|
|
= label_tag "bpls_#{bpl.id}", bpl.name
|
|
%h3= t("activerecord.attributes.build_list.update_type")
|
|
.lineForm= f.select :update_type, BuildList::UPDATE_TYPES
|
|
%h3= t("activerecord.attributes.build_list.preferences")
|
|
.both
|
|
= f.check_box :auto_publish
|
|
= f.label :auto_publish
|
|
.both
|
|
= f.check_box :build_requires
|
|
= f.label :build_requires
|
|
%br
|
|
= f.submit t("layout.projects.build_button")
|
|
%section.right
|
|
%h3= t("activerecord.attributes.build_list.arch")
|
|
- Arch.recent.each do |arch|
|
|
.both
|
|
= check_box_tag "arches[]", arch.id, (params[:arches]||[]).include?(arch.id.to_s), :id => "arches_#{arch.id}"
|
|
= label_tag "arches_#{arch.id}", arch.name
|
|
%h3= t("activerecord.attributes.build_list.pl")
|
|
.lineForm= f.select :pl_id, @project.repositories.collect{|r| ["#{r.platform.name}/#{r.name}", r.platform.id]}
|
|
%h3= t("activerecord.attributes.build_list.include_repos")
|
|
#include_repos
|
|
|
|
.preloaded_include_repos{:style => 'display: none'}
|
|
- @project.platforms.each do |p|
|
|
%div{:class => "include_repos_#{p.id}"}= render 'include_repos', :platform => p
|
|
|
|
= render 'projects/submenu'
|