Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 9 additions & 4 deletions app/views/proposal/_proposal_form.html.haml
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
= semantic_form_for(@event, url: @url) do |f|

- if current_user.nil?
= render partial: 'devise/shared/sign_up_form_embedded'

= f.inputs name: 'Proposal Information' do
= f.input :title, as: :string, required: true

Expand Down Expand Up @@ -39,15 +43,16 @@

= f.input :require_registration, label: 'Require participants to register to your event'

- if current_user.has_any_role? :admin, { name: :organizer, resource: @conference }, { name: :cfp, resource: @conference }
= f.input :is_highlight
-# We have to verify current_user in this context as this partial form is used both for new proposals and editing existing proposals
- if current_user
- if current_user.has_any_role? :admin, { name: :organizer, resource: @conference }, { name: :cfp, resource: @conference }
= f.input :is_highlight

%p.text-right
= link_to '#description', "data-toggle"=>"collapse" do
Do you require something special?
.collapse#description
= f.input :description, input_html: { rows: 5 }, label: 'Requirements', placeholder: 'Eg. Whiteboard, printer, or something like that.'


%p.text-right
= f.action :submit, :as => :button, :button_html => {:class => "btn btn-success"}, label: 'Update Proposal'
= f.action :submit, :as => :button, :button_html => {:class => "btn btn-success"}, label: @event.new_record? ? 'Create Proposal' : 'Update Proposal'
45 changes: 2 additions & 43 deletions app/views/proposal/new.html.haml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
.col-md-12
= render partial: 'encouragement_text'
.row
.col-md-8
.col-md-12
- if !current_user
%legend
%span
Expand All @@ -19,48 +19,7 @@
Already have an account?
.tab-content
.tab-pane.active{role: 'tabpanel', id: 'signup'}
= render partial: 'proposal_form'

= semantic_form_for(@event, url: @url) do |f|

= render partial: 'devise/shared/sign_up_form_embedded'

= f.inputs name: 'Proposal Information' do
= f.input :title, as: :string, required: true
= f.input :event_type_id, as: :select,
collection: @conference.event_types.map {|type| ["#{type.title} - #{show_time(type.length)}", type.id,
data: { min_words: type.minimum_abstract_length, max_words: type.maximum_abstract_length }]},
include_blank: false, label: 'Type', input_html: { class: 'select-help-toggle' }

- @conference.event_types.each do |event_type|
%span{ class: 'help-block event_event_type_id collapse', id: "#{event_type.id}-help" }
= event_type.description

:javascript
$("##{@conference.event_types.first.id}-help").collapse('show');

= f.input :abstract, input_html: { rows: 5 },
required: true, hint: link_to('Tips to improve your presentations', 'http://blog.hubspot.com/blog/tabid/6307/bid/5975/10-Rules-to-Instantly-Improve-Your-Presentations.aspx')

%p
You have used
%span#abstract-count #{@event.abstract_word_count}
words. Abstracts must be between
%span#abstract-minimum-word-count
0
and
%span#abstract-maximum-word-count
250
words.

= f.input :require_registration, label: 'Require participants to register to your event'

%p.text-right
= link_to '#description', "data-toggle"=>"collapse", id: 'description_link' do
Do you require something special?
.collapse#description
= f.input :description, input_html: { rows: 5 }, label: 'Requirements', placeholder: 'Eg. Whiteboard, printer, or something like that.'

%p.text-right
= f.action :submit, :as => :button, :button_html => {:class => "btn btn-success"}, label: 'Create Proposal'
.tab-pane{role: 'tabpanel', id: 'signin'}
= render partial: 'devise/shared/sign_in_form_embedded'
2 changes: 1 addition & 1 deletion spec/features/proposal_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@
select('Example Event Type', from: 'event[event_type_id]')

fill_in 'event_abstract', with: 'Lorem ipsum abstract'
click_link 'description_link'
click_link 'Do you require something special?'
fill_in 'event_description', with: 'Lorem ipsum description'

click_button 'Create Proposal'
Expand Down