Add/edit org code of conduct, as admin

This commit is contained in:
James Mason 2018-03-16 12:02:49 -07:00 committed by Ana María Martínez Gómez
parent 512ad067e1
commit a6daff8582
6 changed files with 58 additions and 5 deletions

View file

@ -1,7 +1,14 @@
= semantic_form_for(@organization, url: (@organization.new_record? ? admin_organizations_path : admin_organization_path(@organization))) do |f|
= f.inputs name: 'Organization details' do
= f.input :name, as: :string, required: true
= f.input :description, as: :text, input_html: { rows: 10 }, placeholder: 'Decribe about your organization..'
= f.input :description, as: :text,
input_html: { rows: 10, data: { provide: 'markdown-editable' } },
hint: markdown_hint,
placeholder: 'Decribe about your organization...'
= f.input :code_of_conduct, as: :text,
input_html: { rows: 10, data: { provide: 'markdown-editable' } },
hint: markdown_hint,
placeholder: 'Rules governing behavior and dispute resolution...'
= image_tag f.object.picture.thumb.url if f.object.picture?
- if @organization.picture?
= image_tag(@organization.picture.thumb.url, width: '20%')