spina-admin-conferences 1.3.9 → 2.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (94) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/stylesheets/spina/admin/conferences/application.sass +0 -15
  3. data/app/controllers/spina/admin/conferences/application_controller.rb +6 -3
  4. data/app/controllers/spina/admin/conferences/conferences_controller.rb +19 -28
  5. data/app/controllers/spina/admin/conferences/delegates_controller.rb +3 -5
  6. data/app/controllers/spina/admin/conferences/dietary_requirements_controller.rb +2 -2
  7. data/app/controllers/spina/admin/conferences/institutions_controller.rb +2 -2
  8. data/app/controllers/spina/admin/conferences/presentation_attachment_types_controller.rb +2 -2
  9. data/app/controllers/spina/admin/conferences/presentation_types_controller.rb +2 -2
  10. data/app/controllers/spina/admin/conferences/presentations_controller.rb +5 -6
  11. data/app/controllers/spina/admin/conferences/rooms_controller.rb +2 -2
  12. data/app/controllers/spina/admin/conferences/sessions_controller.rb +2 -2
  13. data/app/jobs/spina/admin/conferences/presentation_import_job.rb +2 -3
  14. data/app/models/spina/admin/conferences/conference.rb +132 -15
  15. data/app/models/spina/admin/conferences/event.rb +30 -65
  16. data/app/models/spina/admin/conferences/presentation.rb +29 -38
  17. data/app/models/spina/parts/admin/conferences/date.rb +14 -0
  18. data/app/models/spina/parts/admin/conferences/email_address.rb +20 -0
  19. data/app/models/spina/parts/admin/conferences/time.rb +14 -0
  20. data/app/models/spina/parts/admin/conferences/url.rb +20 -0
  21. data/app/views/spina/admin/conferences/{delegates/_form_conferences.html.haml → application/_conferences.html.haml} +2 -4
  22. data/app/views/spina/admin/conferences/{conferences/_form_delegates.html.haml → application/_delegates.html.haml} +2 -3
  23. data/app/views/spina/admin/conferences/application/_dietary_requirements.html.haml +9 -0
  24. data/app/views/spina/admin/conferences/application/_institutions.html.haml +10 -0
  25. data/app/views/spina/admin/conferences/application/_presentation_attachment_types.html.haml +10 -0
  26. data/app/views/spina/admin/conferences/{conferences/_form_presentation_types.html.haml → application/_presentation_types.html.haml} +2 -3
  27. data/app/views/spina/admin/conferences/{rooms/_form_presentations.html.haml → application/_presentations.html.haml} +2 -3
  28. data/app/views/spina/admin/conferences/{conferences/_form_rooms.html.haml → application/_rooms.html.haml} +2 -3
  29. data/app/views/spina/admin/conferences/{presentation_types/_form_sessions.html.haml → application/_sessions.html.haml} +2 -3
  30. data/app/views/spina/admin/conferences/conferences/_event_fields.html.haml +14 -21
  31. data/app/views/spina/admin/conferences/conferences/_form.html.haml +7 -3
  32. data/app/views/spina/admin/conferences/conferences/_form_conference_details.html.haml +22 -24
  33. data/app/views/spina/admin/conferences/conferences/_form_parts.html.haml +7 -14
  34. data/app/views/spina/admin/conferences/conferences/index.html.haml +2 -13
  35. data/app/views/spina/admin/conferences/delegates/_form.html.haml +4 -3
  36. data/app/views/spina/admin/conferences/delegates/_form_delegate_details.html.haml +47 -32
  37. data/app/views/spina/admin/conferences/delegates/index.html.haml +2 -12
  38. data/app/views/spina/admin/conferences/dietary_requirements/_form.html.haml +3 -3
  39. data/app/views/spina/admin/conferences/dietary_requirements/_form_dietary_requirement_details.html.haml +7 -8
  40. data/app/views/spina/admin/conferences/dietary_requirements/index.html.haml +2 -10
  41. data/app/views/spina/admin/conferences/institutions/_form.html.haml +4 -3
  42. data/app/views/spina/admin/conferences/institutions/_form_institution_details.html.haml +29 -35
  43. data/app/views/spina/admin/conferences/institutions/index.html.haml +2 -11
  44. data/app/views/spina/admin/conferences/presentation_attachment_types/_form.html.haml +2 -2
  45. data/app/views/spina/admin/conferences/presentation_attachment_types/index.html.haml +2 -10
  46. data/app/views/spina/admin/conferences/presentation_types/_form.html.haml +4 -3
  47. data/app/views/spina/admin/conferences/presentation_types/_form_presentation_type_details.html.haml +13 -17
  48. data/app/views/spina/admin/conferences/presentation_types/index.html.haml +2 -12
  49. data/app/views/spina/admin/conferences/presentations/_attachment_fields.html.haml +6 -15
  50. data/app/views/spina/admin/conferences/presentations/_form.html.haml +3 -3
  51. data/app/views/spina/admin/conferences/presentations/_form_presentation_details.html.haml +55 -55
  52. data/app/views/spina/admin/conferences/presentations/index.html.haml +2 -12
  53. data/app/views/spina/admin/conferences/rooms/_form.html.haml +3 -3
  54. data/app/views/spina/admin/conferences/rooms/_form_room_details.html.haml +13 -15
  55. data/app/views/spina/admin/conferences/rooms/index.html.haml +2 -12
  56. data/app/views/spina/admin/conferences/sessions/_form.html.haml +3 -3
  57. data/app/views/spina/admin/conferences/sessions/_form_session_details.html.haml +18 -20
  58. data/app/views/spina/admin/conferences/sessions/_session.html.haml +1 -1
  59. data/app/views/spina/admin/conferences/sessions/index.html.haml +2 -12
  60. data/app/views/spina/admin/hooks/conferences/_primary_navigation.html.haml +4 -4
  61. data/app/views/spina/admin/hooks/conferences/_settings_secondary_navigation.html.haml +2 -2
  62. data/app/views/spina/admin/parts/admin/conferences/dates/_form.html.haml +2 -0
  63. data/app/views/spina/admin/parts/admin/conferences/email_addresses/_form.html.haml +2 -0
  64. data/app/views/spina/admin/parts/admin/conferences/times/_form.html.haml +2 -0
  65. data/app/views/spina/admin/parts/admin/conferences/urls/_form.html.haml +2 -0
  66. data/config/locales/en.yml +26 -29
  67. data/db/migrate/20210315164409_add_json_attributes_to_spina_conferences_presentations.rb +7 -0
  68. data/db/migrate/20210315164410_add_json_attributes_to_spina_conferences_conferences.rb +7 -0
  69. data/db/migrate/20210315164411_convert_partables_to_json.rb +407 -0
  70. data/db/migrate/20210417102513_add_locale_to_action_text_rich_texts.rb +11 -0
  71. data/db/migrate/20210417102514_move_texts_to_action_text_rich_texts.rb +82 -0
  72. data/lib/spina/admin/conferences.rb +1 -0
  73. data/lib/spina/admin/conferences/engine.rb +10 -5
  74. data/lib/spina/admin/conferences/version.rb +1 -1
  75. data/lib/tasks/spina/admin/conferences_tasks.rake +11 -1
  76. metadata +41 -29
  77. data/app/helpers/spina/admin/conferences/conferences_helper.rb +0 -44
  78. data/app/models/spina/admin/conferences/date_part.rb +0 -15
  79. data/app/models/spina/admin/conferences/email_address_part.rb +0 -21
  80. data/app/models/spina/admin/conferences/part.rb +0 -20
  81. data/app/models/spina/admin/conferences/time_part.rb +0 -53
  82. data/app/models/spina/admin/conferences/url_part.rb +0 -21
  83. data/app/views/spina/admin/conferences/conferences/_form_presentations.html.haml +0 -12
  84. data/app/views/spina/admin/conferences/delegates/_form_presentations.html.haml +0 -12
  85. data/app/views/spina/admin/conferences/dietary_requirements/_form_delegates.html.haml +0 -12
  86. data/app/views/spina/admin/conferences/institutions/_form_delegates.html.haml +0 -12
  87. data/app/views/spina/admin/conferences/institutions/_form_rooms.html.haml +0 -12
  88. data/app/views/spina/admin/conferences/presentation_types/_form_presentations.html.haml +0 -12
  89. data/app/views/spina/admin/conferences/presentations/_form_presenters.html.haml +0 -12
  90. data/app/views/spina/admin/conferences/sessions/_form_presentations.html.haml +0 -12
  91. data/app/views/spina/admin/partables/admin/conferences/date_parts/_form.html.haml +0 -5
  92. data/app/views/spina/admin/partables/admin/conferences/email_address_parts/_form.html.haml +0 -5
  93. data/app/views/spina/admin/partables/admin/conferences/time_parts/_form.html.haml +0 -7
  94. data/app/views/spina/admin/partables/admin/conferences/url_parts/_form.html.haml +0 -5
@@ -1,35 +1,28 @@
1
1
  .structure-form-pane{ class: ('active' if (local_assigns[:active] == true) || (f.index == 0)), id: "structure_form_pane_#{f.index}",
2
2
  data: { 'spina--admin--conferences--conference_events_form': { target: 'formPane' } } }
3
3
  .structure-form-part
4
- .horizontal-form-label= Spina::Admin::Conferences::Event.human_attribute_name :name
5
- .horizontal-form-content= f.text_field :name, placeholder: Spina::Admin::Conferences::Event.human_attribute_name(:name), required: true
4
+ .page-form-label= Spina::Admin::Conferences::Event.human_attribute_name :name
5
+ .page-form-control= f.text_field :name, placeholder: Spina::Admin::Conferences::Event.human_attribute_name(:name), required: true
6
6
 
7
7
  .structure-form-part
8
- .horizontal-form-label= Spina::Admin::Conferences::Event.human_attribute_name :date
9
- .horizontal-form-content= f.date_field :date, value: f.object.conference.start_date&.strftime("%Y-%m-%d"),
10
- placeholder: Spina::Admin::Conferences::Event.human_attribute_name(:date),
11
- required: true
8
+ .page-form-label= Spina::Admin::Conferences::Event.human_attribute_name :start_datetime
9
+ .page-form-control= f.datetime_field :start_datetime,
10
+ placeholder: Spina::Admin::Conferences::Event.human_attribute_name(:start_datetime), required: true
12
11
 
13
12
  .structure-form-part
14
- .horizontal-form-label= Spina::Admin::Conferences::Event.human_attribute_name :start_time
15
- .horizontal-form-content= f.time_field :start_time,
16
- value: (f.object.start_time.to_formatted_s(:time) unless f.object.start_time.blank?),
17
- placeholder: Spina::Admin::Conferences::Event.human_attribute_name(:start_time), required: true
13
+ .page-form-label= Spina::Admin::Conferences::Event.human_attribute_name :finish_datetime
14
+ .page-form-control= f.datetime_field :finish_datetime,
15
+ placeholder: Spina::Admin::Conferences::Event.human_attribute_name(:finish_datetime), required: true
18
16
 
19
17
  .structure-form-part
20
- .horizontal-form-label= Spina::Admin::Conferences::Event.human_attribute_name :finish_time
21
- .horizontal-form-content= f.time_field :finish_time,
22
- value: (f.object.finish_time.to_formatted_s(:time) unless f.object.finish_time.blank?),
23
- placeholder: Spina::Admin::Conferences::Event.human_attribute_name(:finish_time), required: true
18
+ .page-form-label= Spina::Admin::Conferences::Event.human_attribute_name :location
19
+ .page-form-control= f.text_field :location, placeholder: Spina::Admin::Conferences::Event.human_attribute_name(:location),
20
+ required: true
24
21
 
25
22
  .structure-form-part
26
- .horizontal-form-label= Spina::Admin::Conferences::Event.human_attribute_name :location
27
- .horizontal-form-content= f.text_field :location, placeholder: Spina::Admin::Conferences::Event.human_attribute_name(:location),
28
- required: true
29
-
30
- .structure-form-part
31
- .horizontal-form-label= Spina::Admin::Conferences::Event.human_attribute_name :description
32
- .horizontal-form-content= render 'spina/admin/shared/rich_text_field', f: f, field: :description
23
+ .page-form-label= Spina::Admin::Conferences::Event.human_attribute_name :description
24
+ .page-form-content
25
+ .page-form-rich-text= f.rich_text_area :description
33
26
 
34
27
  = f.hidden_field :id
35
28
 
@@ -2,7 +2,7 @@
2
2
  - content_for :notifications do
3
3
  = render 'errors', errors: @conference.errors
4
4
 
5
- = form_for @conference, html: { autocomplete: 'off' } do |f|
5
+ = form_for [:admin_conferences, @conference], html: { autocomplete: 'off' } do |f|
6
6
  %header#header
7
7
  = render partial: 'spina/admin/shared/breadcrumbs'
8
8
 
@@ -19,5 +19,9 @@
19
19
  %li{ class: ('active' if i == 0) }
20
20
  = link_to t(".#{tab}"), "##{tab}"
21
21
 
22
- - @tabs.each do |tab|
23
- = render "form_#{tab}", f: f
22
+ #conference_details.tab-content.active= render 'form_conference_details', f: f
23
+ #parts.tab-content= render 'form_parts', f: f
24
+ #rooms.tab-content= render partial: 'rooms', object: @conference.rooms
25
+ #presentation_types.tab-content= render partial: 'presentation_types', object: @conference.presentation_types
26
+ #delegates.tab-content= render partial: 'delegates', object: @conference.delegates
27
+ #presentations.tab-content= render partial: 'presentations', object: @conference.presentations
@@ -1,29 +1,27 @@
1
- #conference_details.tab-content.active
2
- .well
3
- .horizontal-form{ data: { controller: 'spina--admin--conferences--select-options', 'spina--admin--conferences--select_options': { config_value: '{ "admin_conferences_conference_institution_id": { "value": "id", "text": "name" }, "admin_conferences_conference_room_ids": { "trigger": "admin_conferences_conference_institution_id", "key": "rooms", "value": "id", "text": "name" } }', record_value: @institutions } } }
4
- .horizontal-form-group
5
- .horizontal-form-label= Spina::Admin::Conferences::Conference.human_attribute_name :name
6
- .horizontal-form-content= f.text_field :name, placeholder: Spina::Admin::Conferences::Conference.human_attribute_name(:name), required: true
1
+ .page-form{ data: { controller: 'spina--admin--conferences--select-options', 'spina--admin--conferences--select_options': { config_value: '{ "admin_conferences_conference_institution_id": { "value": "id", "text": "name" }, "admin_conferences_conference_room_ids": { "trigger": "admin_conferences_conference_institution_id", "key": "rooms", "value": "id", "text": "name" } }', record_value: @institutions } } }
2
+ .page-form-group
3
+ .page-form-label= Spina::Admin::Conferences::Conference.human_attribute_name :name
4
+ .page-form-control= f.text_field :name, placeholder: Spina::Admin::Conferences::Conference.human_attribute_name(:name), required: true, class: 'input-large'
7
5
 
8
- .horizontal-form-group
9
- .horizontal-form-label= Spina::Admin::Conferences::Conference.human_attribute_name :start_date
10
- .horizontal-form-content= f.date_field :start_date, value: (@conference.start_date.strftime("%Y-%m-%d") if @conference.start_date.present?), placeholder: Spina::Admin::Conferences::Conference.human_attribute_name(:start_date), required: true
6
+ .page-form-group
7
+ .page-form-label= Spina::Admin::Conferences::Conference.human_attribute_name :start_date
8
+ .page-form-control= f.date_field :start_date, value: (@conference.start_date.strftime("%Y-%m-%d") if @conference.start_date.present?), placeholder: Spina::Admin::Conferences::Conference.human_attribute_name(:start_date), required: true
11
9
 
12
- .horizontal-form-group
13
- .horizontal-form-label= Spina::Admin::Conferences::Conference.human_attribute_name :finish_date
14
- .horizontal-form-content= f.date_field :finish_date, value: (@conference.finish_date.strftime("%Y-%m-%d") if @conference.finish_date.present?), placeholder: Spina::Admin::Conferences::Conference.human_attribute_name(:finish_date), required: true
10
+ .page-form-group
11
+ .page-form-label= Spina::Admin::Conferences::Conference.human_attribute_name :finish_date
12
+ .page-form-control= f.date_field :finish_date, value: (@conference.finish_date.strftime("%Y-%m-%d") if @conference.finish_date.present?), placeholder: Spina::Admin::Conferences::Conference.human_attribute_name(:finish_date), required: true
15
13
 
16
- .horizontal-form-group{ class: dom_class(@conference.events) }
17
- .horizontal-form-content
18
- .structure-form{ data: { controller: 'spina--admin--conferences--conference-events-form', 'spina--admin--conferences--conference_events_form': { active_class: 'active' } } }
19
- .structure-form-menu
20
- %label= Spina::Admin::Conferences::Conference.human_attribute_name :events
21
- %ul= render partial: 'event_row', collection: f.object.events, as: :event
22
- = link_to icon('plus'), @conference.new_record? ? new_admin_conferences_event_path : new_admin_conferences_conference_event_path(@conference, index: @conference.events.size), remote: true, class: %w[button button-link icon], data: { 'spina--admin--conferences--conference_events_form_target': 'addFormLink', disable_with: '' }
14
+ .page-form-group{ class: dom_class(@conference.events) }
15
+ .page-form-label= Spina::Admin::Conferences::Conference.human_attribute_name :events
16
+ .page-form-control
17
+ .structure-form{ data: { controller: 'spina--admin--conferences--conference-events-form', 'spina--admin--conferences--conference_events_form': { active_class: 'active' } } }
18
+ .structure-form-menu
19
+ %ul= render partial: 'event_row', collection: f.object.events, as: :event
20
+ = link_to icon('plus'), @conference.new_record? ? new_admin_conferences_event_path : new_admin_conferences_conference_event_path(@conference, index: @conference.events.size), remote: true, class: %w[button button-link icon], data: { 'spina--admin--conferences--conference_events_form_target': 'addFormLink', disable_with: '' }
23
21
 
24
- .structure-form-content{ data: { action: 'conferenceEventFieldsAdded->spina--admin--conferences--conference-events-form#updateURL' } }
25
- = f.fields_for :events do |event_fields|
26
- = render 'event_fields', f: event_fields
22
+ .structure-form-content{ data: { action: 'conferenceEventFieldsAdded->spina--admin--conferences--conference-events-form#updateURL' } }
23
+ = f.fields_for :events do |event_fields|
24
+ = render 'event_fields', f: event_fields
27
25
 
28
- - unless @conference.new_record?
29
- .pull-right= link_to t('spina.permanently_delete'), admin_conferences_conference_path(@conference), method: :delete, data: { confirm: t('.delete_confirmation', name: @conference.name) }, class: %w[button button-link button-danger]
26
+ - unless @conference.new_record?
27
+ .pull-right= link_to t('spina.permanently_delete'), admin_conferences_conference_path(@conference), method: :delete, data: { confirm: t('.delete_confirmation', name: @conference.name) }, class: %w[button button-link button-danger]
@@ -1,15 +1,8 @@
1
- #parts.tab-content
2
- .well
3
- .horizontal-form
4
- = f.fields_for :parts do |ff|
5
- = ff.hidden_field :id
6
- = ff.hidden_field :title
7
- = ff.hidden_field :partable_type
8
- = ff.hidden_field :name
1
+ .page-form
2
+ = f.fields_for :"#{@locale}_content", @parts do |ff|
3
+ = ff.hidden_field :type, value: ff.object.class.name
4
+ = ff.hidden_field :title
5
+ = ff.hidden_field :name
9
6
 
10
- .horizontal-form-group.page-part{ data: { name: ff.object.name } }
11
- - case ff.object.partable_type
12
- - when 'Spina::Structure'
13
- = render 'form_structure', f: ff
14
- - else
15
- = render "spina/admin/partables/#{partable_type_partial_namespace(ff.object.partable_type)}/form", f: ff
7
+ .page-form-group.page-part{ data: { name: ff.object.name } }
8
+ = render "spina/admin/parts/#{parts_partial_namespace(ff.object.class.name)}/form", f: ff
@@ -3,16 +3,5 @@
3
3
  = icon 'plus'
4
4
  = t '.new'
5
5
 
6
- .well
7
- .table-container
8
- %table.table
9
- %thead
10
- %tr
11
- %th= Spina::Admin::Conferences::Conference.human_attribute_name :name
12
- %th= Spina::Admin::Conferences::Conference.human_attribute_name :year
13
- %th= Spina::Admin::Conferences::Conference.human_attribute_name :start_date
14
- %th= Spina::Admin::Conferences::Conference.human_attribute_name :finish_date
15
- %th
16
-
17
- %tbody
18
- = render @conferences.any? ? @conferences : 'empty_list', message: t('.no_conferences')
6
+ = render partial: 'conferences', object: @conferences
7
+ = link_to_next_page @conferences, 'Next'
@@ -2,7 +2,7 @@
2
2
  - content_for :notifications do
3
3
  = render 'errors', errors: @delegate.errors
4
4
 
5
- = form_for @delegate, html: { autocomplete: 'off' } do |f|
5
+ = form_for [:admin_conferences, @delegate], html: { autocomplete: 'off' } do |f|
6
6
  %header#header
7
7
  = render partial: 'spina/admin/shared/breadcrumbs'
8
8
 
@@ -19,5 +19,6 @@
19
19
  %li{ class: ('active' if i == 0) }
20
20
  = link_to t(".#{tab}"), "##{tab}"
21
21
 
22
- - @tabs.each do |tab|
23
- = render "form_#{tab}", f: f
22
+ #delegate_details.tab-content.active= render 'form_delegate_details', f: f
23
+ #conferences.tab-content= render partial: 'conferences', object: @delegate.conferences
24
+ #presentations.tab-content= render partial: 'presentations', object: @delegate.presentations
@@ -1,38 +1,53 @@
1
- #delegate_details.tab-content.active
2
- .well
3
- .horizontal-form
4
- .horizontal-form-group
5
- .horizontal-form-label= Spina::Admin::Conferences::Delegate.human_attribute_name :first_name
6
- .horizontal-form-content= f.text_field :first_name, placeholder: Spina::Admin::Conferences::Delegate.human_attribute_name(:first_name), required: true
1
+ .page-form
2
+ .page-form-group
3
+ .page-form-label= Spina::Admin::Conferences::Delegate.human_attribute_name :name
4
+ .page-form-control
5
+ .input-group
6
+ = f.text_field :first_name, placeholder: Spina::Admin::Conferences::Delegate.human_attribute_name(:first_name), required: true, class: 'input-large'
7
+ = f.text_field :last_name, placeholder: Spina::Admin::Conferences::Delegate.human_attribute_name(:last_name), required: true, class: 'input-large'
7
8
 
8
- .horizontal-form-group
9
- .horizontal-form-label= Spina::Admin::Conferences::Delegate.human_attribute_name :last_name
10
- .horizontal-form-content= f.text_field :last_name, placeholder: Spina::Admin::Conferences::Delegate.human_attribute_name(:last_name), required: true
9
+ .page-form-group
10
+ .page-form-label= Spina::Admin::Conferences::Delegate.human_attribute_name :institution
11
+ .page-form-control
12
+ .select-dropdown= f.collection_select :institution_id, Spina::Admin::Conferences::Institution.all, :id, :name, {}, required: true
11
13
 
12
- .horizontal-form-group
13
- .horizontal-form-label= Spina::Admin::Conferences::Delegate.human_attribute_name :institution
14
- .horizontal-form-content
15
- .select-dropdown= f.collection_select :institution_id, Spina::Admin::Conferences::Institution.all, :id, :name, {}, required: true
14
+ .page-form-group
15
+ .page-form-label= Spina::Admin::Conferences::Delegate.human_attribute_name :email_address
16
+ .page-form-control= f.email_field :email_address, placeholder: Spina::Admin::Conferences::Delegate.human_attribute_name(:email_address), required: true
16
17
 
17
- .horizontal-form-group
18
- .horizontal-form-label= Spina::Admin::Conferences::Delegate.human_attribute_name :email_address
19
- .horizontal-form-content= f.email_field :email_address, placeholder: Spina::Admin::Conferences::Delegate.human_attribute_name(:email_address), required: true
18
+ .page-form-group
19
+ .page-form-label= Spina::Admin::Conferences::Delegate.human_attribute_name :url
20
+ .page-form-control= f.url_field :url, placeholder: Spina::Admin::Conferences::Delegate.human_attribute_name(:url)
20
21
 
21
- .horizontal-form-group
22
- .horizontal-form-label= Spina::Admin::Conferences::Delegate.human_attribute_name :url
23
- .horizontal-form-content= f.url_field :url, placeholder: Spina::Admin::Conferences::Delegate.human_attribute_name(:url)
22
+ .page-form-group
23
+ .page-form-label
24
+ = Spina::Admin::Conferences::Delegate.human_attribute_name :dietary_requirements
25
+ .page-form-content
26
+ .well{ style: 'margin: 0' }
27
+ .table-container
28
+ %table.table{ style: 'margin: 0' }
29
+ %tbody
30
+ = f.collection_check_boxes :dietary_requirement_ids, Spina::Admin::Conferences::DietaryRequirement.all, :id, :name do |builder|
31
+ %tr
32
+ %td{ style: "padding-left: 16px" }
33
+ .form-checkbox
34
+ = builder.check_box
35
+ = builder.label
24
36
 
25
- .horizontal-form-group
26
- .horizontal-form-label
27
- = Spina::Admin::Conferences::Delegate.human_attribute_name :conferences
28
- %small= t '.multiple_conferences_selection_instructions_html'
29
- .horizontal-form-content.multiple.select-dropdown= f.collection_select :conference_ids, Spina::Admin::Conferences::Conference.all, :id, :name, {}, { multiple: true, required: true }
37
+ .page-form-group
38
+ .page-form-label
39
+ = Spina::Admin::Conferences::Delegate.human_attribute_name :conferences
40
+ .page-form-content
41
+ .well{ style: 'margin: 0' }
42
+ .table-container
43
+ %table.table{ style: 'margin: 0' }
44
+ %tbody
45
+ = f.collection_check_boxes :conference_ids, Spina::Admin::Conferences::Conference.all, :id, :name, {} do |builder|
46
+ %tr
47
+ %td{ style: "padding-left: 16px" }
48
+ .form-checkbox
49
+ = builder.check_box
50
+ = builder.label
30
51
 
31
- .horizontal-form-group
32
- .horizontal-form-label
33
- = Spina::Admin::Conferences::Delegate.human_attribute_name :dietary_requirements
34
- %small= t '.multiple_dietary_requirements_selection_instructions_html'
35
- .horizontal-form-content.multiple.select-dropdown= f.collection_select :dietary_requirement_ids, Spina::Admin::Conferences::DietaryRequirement.all, :id, :name, {}, { multiple: true, required: false }
36
-
37
- - unless @delegate.new_record?
38
- .pull-right= link_to t('spina.permanently_delete'), admin_conferences_delegate_path(@delegate), method: :delete, data: { confirm: t('.delete_confirmation', delegate: @delegate.full_name) }, class: %w[button button-link button-danger]
52
+ - unless @delegate.new_record?
53
+ .pull-right= link_to t('spina.permanently_delete'), admin_conferences_delegate_path(@delegate), method: :delete, data: { confirm: t('.delete_confirmation', delegate: @delegate.full_name) }, class: %w[button button-link button-danger]
@@ -9,15 +9,5 @@
9
9
  = icon 'plus'
10
10
  = t '.new'
11
11
 
12
- .well
13
- .table-container
14
- %table.table
15
- %thead
16
- %tr
17
- %th= Spina::Admin::Conferences::Delegate.human_attribute_name :name
18
- %th= Spina::Admin::Conferences::Delegate.human_attribute_name :email_address
19
- %th= Spina::Admin::Conferences::Delegate.human_attribute_name :institution
20
- %th
21
-
22
- %tbody
23
- = render @delegates.any? ? @delegates : 'empty_list', message: t('.no_delegates')
12
+ = render partial: 'delegates', object: @delegates
13
+ = link_to_next_page @delegates, 'Next'
@@ -2,7 +2,7 @@
2
2
  - content_for :notifications do
3
3
  = render 'errors', errors: @dietary_requirement.errors
4
4
 
5
- = form_for @dietary_requirement, html: { autocomplete: 'off' } do |f|
5
+ = form_for [:admin_conferences, @dietary_requirement], html: { autocomplete: 'off' } do |f|
6
6
  %header#header
7
7
  = render partial: 'spina/admin/shared/breadcrumbs'
8
8
 
@@ -19,5 +19,5 @@
19
19
  %li{ class: ('active' if i == 0) }
20
20
  = link_to t(".#{tab}"), "##{tab}"
21
21
 
22
- - @tabs.each do |tab|
23
- = render "form_#{tab}", f: f
22
+ #dietary_requirement_details.tab-content.active= render 'form_dietary_requirement_details', f: f
23
+ #delegates.tab-content= render partial: 'delegates', object: @dietary_requirement.delegates
@@ -1,9 +1,8 @@
1
- #dietary_requirement_details.tab-content.active
2
- .well
3
- .horizontal-form
4
- .horizontal-form-group
5
- .horizontal-form-label= Spina::Admin::Conferences::DietaryRequirement.human_attribute_name :name
6
- .horizontal-form-content= f.text_field :name, placeholder: Spina::Admin::Conferences::DietaryRequirement.human_attribute_name(:name), required: true
1
+ %div{ style: 'margin-top: 40px' }
2
+ .horizontal-form
3
+ .horizontal-form-group
4
+ .horizontal-form-label= Spina::Admin::Conferences::DietaryRequirement.human_attribute_name :name
5
+ .horizontal-form-content= f.text_field :name, placeholder: Spina::Admin::Conferences::DietaryRequirement.human_attribute_name(:name), required: true
7
6
 
8
- - unless @dietary_requirement.new_record?
9
- .pull-right= link_to t('spina.permanently_delete'), admin_conferences_dietary_requirement_path(@dietary_requirement), method: :delete, data: { confirm: t('.delete_confirmation', dietary_requirement: @dietary_requirement.name) }, class: %w[button button-link button-danger]
7
+ - unless @dietary_requirement.new_record?
8
+ .pull-right= link_to t('spina.permanently_delete'), admin_conferences_dietary_requirement_path(@dietary_requirement), method: :delete, data: { confirm: t('.delete_confirmation', dietary_requirement: @dietary_requirement.name) }, class: %w[button button-link button-danger]
@@ -3,13 +3,5 @@
3
3
  = icon 'plus'
4
4
  = t '.new'
5
5
 
6
- .well
7
- .table-container
8
- %table.table
9
- %thead
10
- %tr
11
- %th= Spina::Admin::Conferences::DietaryRequirement.human_attribute_name :name
12
- %th
13
-
14
- %tbody
15
- = render @dietary_requirements.any? ? @dietary_requirements : 'empty_list', message: t('.no_dietary_requirements')
6
+ = render partial: 'dietary_requirements', object: @dietary_requirements
7
+ = link_to_next_page @dietary_requirements, 'Next'
@@ -2,7 +2,7 @@
2
2
  - content_for :notifications do
3
3
  = render 'errors', errors: @institution.errors
4
4
 
5
- = form_for @institution, html: { autocomplete: 'off' } do |f|
5
+ = form_for [:admin_conferences, @institution], html: { autocomplete: 'off' } do |f|
6
6
  %header#header
7
7
  = render partial: 'spina/admin/shared/breadcrumbs'
8
8
 
@@ -19,5 +19,6 @@
19
19
  %li{ class: ('active' if i == 0) }
20
20
  = link_to t(".#{tab}"), "##{tab}"
21
21
 
22
- - @tabs.each do |tab|
23
- = render "form_#{tab}", f: f
22
+ #institution_details.tab-content.active= render 'form_institution_details', f: f
23
+ #rooms.tab-content= render partial: 'rooms', object: @institution.rooms
24
+ #delegates.tab-content= render partial: 'delegates', object: @institution.delegates
@@ -1,35 +1,29 @@
1
- #institution_details.tab-content.active
2
- .well
3
- .horizontal-form
4
- .horizontal-form-group
5
- .horizontal-form-label= Spina::Admin::Conferences::Institution.human_attribute_name :name
6
- .horizontal-form-content= f.text_field :name, placeholder: Spina::Admin::Conferences::Institution.human_attribute_name(:name), required: true
7
-
8
- .horizontal-form-group
9
- .horizontal-form-label= Spina::Admin::Conferences::Institution.human_attribute_name :city
10
- .horizontal-form-content= f.text_field :city, placeholder: Spina::Admin::Conferences::Institution.human_attribute_name(:city), required: true
11
-
12
- .horizontal-form-group
13
- .horizontal-form-label= Spina::Admin::Conferences::Institution.human_attribute_name :logo
14
- .horizontal-form-content{ data: { controller: 'image-form' } }
15
- = link_to admin_media_picker_path(selected_ids: [f.object.logo_id], hidden_field_id: 'media_picker_logo_id'), remote: true, class: %w[media_picker clearfix] do
16
- .placeholder
17
- %span.button.button-small.button-round
18
- %i.icon.icon-dots
19
- = t 'spina.images.choose_image'
20
-
21
- - if f.object.logo&.file&.attached?
22
- %br/
23
-
24
- %span.button.button-small.button-round{ data: { action: 'click->image-form#remove', target: 'image-form.button' } }
25
- %i.icon.icon-trash
26
- = t 'spina.images.remove_image'
27
-
28
- - if f.object.logo&.file&.attached?
29
- .image{ data: { target: 'image-form.image' } }= image_tag variant(f.object.logo.file, resize: '300x300^', crop: '300x300+0+0')
30
-
31
- = f.hidden_field :logo_id, data: { hidden_field_id: 'media_picker_logo_id', target: 'image-form.field' }
32
-
33
-
34
- - unless @institution.new_record?
35
- .pull-right= link_to t('spina.permanently_delete'), admin_conferences_institution_path(@institution), method: :delete, data: { confirm: t('.delete_confirmation', institution: @institution.name) }, class: %w[button button-link button-danger]
1
+ .page-form
2
+ .page-form-group
3
+ .page-form-label= Spina::Admin::Conferences::Institution.human_attribute_name :name
4
+ .page-form-control= f.text_field :name, placeholder: Spina::Admin::Conferences::Institution.human_attribute_name(:name), required: true, class: 'input-large'
5
+
6
+ .page-form-group
7
+ .page-form-label= Spina::Admin::Conferences::Institution.human_attribute_name :city
8
+ .page-form-control= f.text_field :city, placeholder: Spina::Admin::Conferences::Institution.human_attribute_name(:city), required: true
9
+
10
+ .page-form-group
11
+ .page-form-label= Spina::Admin::Conferences::Institution.human_attribute_name :logo
12
+ .page-form-content{ data: { controller: 'image-form' } }
13
+ .page-form-media-picker
14
+ %div{ style: 'width: 100%' }
15
+ = link_to admin_media_picker_path(selected_ids: [f.object.logo_id], input: "media_picker_#{f.object.object_id}", mode: 'single'), remote: true, class: 'image', data: { target: 'image-form.image' } do
16
+ .page-form-media-picker-placeholder= t 'spina.images.choose_image'
17
+ %div{ id: "media_picker_#{f.object.object_id}" }
18
+ = f.hidden_field :logo_id, data: { target: 'image-form.imageId' }
19
+ = f.hidden_field :logo_signed_blob_id, value: f.object.logo&.file&.signed_id, data: {target: 'image-form.signedBlobId'}
20
+ = f.hidden_field :logo_filename, value: f.object.logo&.file&.filename, data: {target: 'image-form.filename'}
21
+ %div{ style: 'width: 200px; height: 150px; overflow: hidden' }
22
+ - if f.object.logo.present?
23
+ = image_tag main_app.url_for(f.object.logo.variant(resize: '400x300^', crop: '400x300+0+0')), width: 200, height: 150
24
+
25
+ = button_tag type: :default, class: 'button button-small button-default', data: { action: 'image-form#remove' } do
26
+ %i.icon.icon-cross{ style: 'margin: 0; font-size: 10px' }
27
+
28
+ - unless @institution.new_record?
29
+ .pull-right= link_to t('spina.permanently_delete'), admin_conferences_institution_path(@institution), method: :delete, data: { confirm: t('.delete_confirmation', institution: @institution.name) }, class: %w[button button-link button-danger]
@@ -3,14 +3,5 @@
3
3
  = icon 'plus'
4
4
  = t '.new'
5
5
 
6
- .well
7
- .table-container
8
- %table.table
9
- %thead
10
- %tr
11
- %th= Spina::Admin::Conferences::Institution.human_attribute_name :name
12
- %th= Spina::Admin::Conferences::Institution.human_attribute_name :city
13
- %th
14
-
15
- %tbody
16
- = render @institutions.any? ? @institutions : 'empty_list', message: t('.no_institutions')
6
+ = render partial: 'institutions', object: @institutions
7
+ = link_to_next_page @institutions, 'Next'