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

18 lines
873 B
Plaintext
Raw Normal View History

2013-02-12 11:16:45 +00:00
- if ['edit', 'update'].exclude? controller.action_name
.leftlist= f.label :name, t("activerecord.attributes.repository.name"), :class => :label
.rightlist= f.text_field :name, :class => 'text_field'
2011-03-31 02:15:17 +01:00
.leftlist= f.label :description, t("activerecord.attributes.repository.description"), :class => :label
.rightlist= f.text_field :description, :class => 'text_field'
2012-09-06 16:39:26 +01:00
.leftlist= f.label :publish_without_qa, t("activerecord.attributes.repository.publish_without_qa"), :class => :label
.rightlist= f.check_box :publish_without_qa, :class => 'check_box'
.both
.hr
2011-03-31 02:15:17 +01:00
.button_block
2013-07-24 21:29:28 +01:00
= submit_tag t('layout.save'), :data => {'disable-with' => t('layout.saving')}
%span.text_button_padding= t("layout.or")
= link_to t("layout.cancel"), @repository.new_record? ? platform_repositories_path(@platform) : platform_repository_path(@platform, @repository), :class => "button"