34 lines
1.1 KiB
Plaintext
34 lines
1.1 KiB
Plaintext
= javascript_include_tag "autocomplete-rails.js"
|
|
|
|
.group
|
|
= f.label :name, :class => :label
|
|
= f.text_field :name, :class => 'text_field'
|
|
|
|
.group
|
|
= f.label :description, :class => :label
|
|
= f.text_field :description, :class => 'text_field'
|
|
|
|
.group
|
|
= f.label :distrib_type, :class => :label
|
|
= f.select :distrib_type, options_for_select(APP_CONFIG['distr_types'])
|
|
|
|
.group
|
|
= f.label :parent, :class => :label
|
|
= f.collection_select :parent_platform_id, Platform.all, :id, :description, :include_blank => true
|
|
|
|
.group
|
|
= f.label :released, :class => :label
|
|
= f.check_box :released, :class => 'check_box'
|
|
|
|
.group
|
|
= label_tag "admin_uname", t("layout.platforms.admin_uname"), :class => :label
|
|
= autocomplete_field_tag 'admin_uname', params[:admin_uname], autocomplete_user_uname_platforms_path
|
|
=# text_field_tag 'admin_id', '', :id => 'admin_id_field'
|
|
|
|
.group.navform.wat-cf
|
|
%button.button{:type => "submit"}
|
|
= image_tag("web-app-theme/icons/tick.png", :alt => t("layout.save"))
|
|
= t("layout.save")
|
|
%span.text_button_padding= t("layout.or")
|
|
= link_to t("layout.cancel"), @platforms_path, :class => "text_button_padding link_button"
|