rosa-build/app/views/platforms/_form.html.haml

31 lines
1015 B
Plaintext
Raw Normal View History

.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'
2011-10-27 17:31:54 +01:00
.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'
2011-12-01 09:29:04 +00:00
.group
= label_tag "ID Хозяина", :class => :label
= autocomplete_field_tag 'admin_id', '', user_name_autocomplete_path, :class => 'text_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")
2011-10-17 15:27:07 +01:00
= link_to t("layout.cancel"), @platforms_path, :class => "text_button_padding link_button"