added help for creating ISO
This commit is contained in:
parent
9d7de35ec4
commit
fc3dbbf698
|
@ -4,23 +4,35 @@
|
|||
%h3= t("layout.product_build_lists.main_data")
|
||||
|
||||
= form_for @product_build_list, :url => platform_product_product_build_lists_path(@platform, @product), :html => {:class => :form} do |f|
|
||||
.leftlist= f.label :project, t("activerecord.attributes.product_build_lists.project"), :class => :label
|
||||
.leftlist= f.label :project, t("activerecord.attributes.product_build_list.project"), :class => :label
|
||||
.rightlist= @product_build_list.product.project.try(:name_with_owner)
|
||||
.both
|
||||
|
||||
.leftlist= f.label :project_version, t("activerecord.attributes.product_build_lists.project_version"), :class => :label
|
||||
.leftlist= f.label :project_version, t("activerecord.attributes.product_build_list.project_version"), :class => :label
|
||||
.rightlist= f.select :project_version, versions_for_group_select(@project), :selected => params[:product_build_lists].try(:fetch, :project_version) || "latest_" + @project.default_branch
|
||||
.both
|
||||
|
||||
.leftlist= f.label :main_script, t("activerecord.attributes.product_build_lists.main_script"), :class => :label
|
||||
.leftlist= f.label :main_script, t("activerecord.attributes.product_build_list.main_script"), :class => :label
|
||||
.rightlist= f.text_field :main_script
|
||||
.both
|
||||
|
||||
.leftlist= f.label :params, t("activerecord.attributes.product_build_lists.params"), :class => :label
|
||||
.leftlist= f.label :params, t("activerecord.attributes.product_build_list.params"), :class => :label
|
||||
.rightlist= f.text_field :params
|
||||
.both
|
||||
|
||||
= f.submit t("layout.projects.build_button")
|
||||
|
||||
%br
|
||||
%div
|
||||
%h3= t('layout.product_build_lists.work_env')
|
||||
= '/home/vagrant/iso_builder - '
|
||||
= t('layout.product_build_lists.iso_builder_folder')
|
||||
%br
|
||||
= '/home/vagrant/results - '
|
||||
= t('layout.product_build_lists.results_folder')
|
||||
%br
|
||||
= '/home/vagrant/archives - '
|
||||
= t('layout.product_build_lists.archives_folder')
|
||||
|
||||
:javascript
|
||||
$('article .all').addClass('bigpadding');
|
|
@ -1,6 +1,10 @@
|
|||
en:
|
||||
layout:
|
||||
product_build_lists:
|
||||
work_env: Work environment
|
||||
iso_builder_folder: folder with contents of the GIT project
|
||||
results_folder: all files from this folder will be uploaded into the file-store
|
||||
archives_folder: this folder will be archived and uploaded into the file-store
|
||||
delete: Delete
|
||||
action: Action
|
||||
id_search: 'Id search'
|
||||
|
|
|
@ -1,6 +1,10 @@
|
|||
ru:
|
||||
layout:
|
||||
product_build_lists:
|
||||
work_env: Рабочее пространство
|
||||
iso_builder_folder: папка с содержимым GIT проекта
|
||||
results_folder: все файлы из этой папки будут загружены на file-store
|
||||
archives_folder: эта папка будет заархивирована и загружена на file-store
|
||||
delete: Удалить
|
||||
action: Действие
|
||||
id_search: 'Поиск по Id'
|
||||
|
|
Loading…
Reference in New Issue