spina-admin-conferences 1.3.10 → 2.0.0.alpha

Sign up to get free protection for your applications and to get access to all the features.
Files changed (91) 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 +18 -27
  5. data/app/controllers/spina/admin/conferences/delegates_controller.rb +2 -4
  6. data/app/controllers/spina/admin/conferences/dietary_requirements_controller.rb +1 -1
  7. data/app/controllers/spina/admin/conferences/institutions_controller.rb +1 -1
  8. data/app/controllers/spina/admin/conferences/presentation_attachment_types_controller.rb +1 -1
  9. data/app/controllers/spina/admin/conferences/presentation_types_controller.rb +1 -1
  10. data/app/controllers/spina/admin/conferences/presentations_controller.rb +4 -5
  11. data/app/controllers/spina/admin/conferences/rooms_controller.rb +1 -1
  12. data/app/controllers/spina/admin/conferences/sessions_controller.rb +1 -1
  13. data/app/jobs/spina/admin/conferences/presentation_import_job.rb +2 -3
  14. data/app/models/spina/admin/conferences/conference.rb +4 -7
  15. data/app/models/spina/admin/conferences/event.rb +21 -58
  16. data/app/models/spina/admin/conferences/presentation.rb +15 -33
  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 +15 -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 +1 -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 +1 -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 +1 -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 +1 -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 +1 -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 +1 -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 +56 -55
  52. data/app/views/spina/admin/conferences/presentations/index.html.haml +1 -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 +1 -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 +1 -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/lib/spina/admin/conferences/engine.rb +7 -0
  71. data/lib/spina/admin/conferences/version.rb +1 -1
  72. data/lib/tasks/spina/admin/conferences_tasks.rake +11 -1
  73. metadata +27 -31
  74. data/app/helpers/spina/admin/conferences/conferences_helper.rb +0 -44
  75. data/app/models/spina/admin/conferences/date_part.rb +0 -15
  76. data/app/models/spina/admin/conferences/email_address_part.rb +0 -21
  77. data/app/models/spina/admin/conferences/part.rb +0 -20
  78. data/app/models/spina/admin/conferences/time_part.rb +0 -53
  79. data/app/models/spina/admin/conferences/url_part.rb +0 -21
  80. data/app/views/spina/admin/conferences/conferences/_form_presentations.html.haml +0 -12
  81. data/app/views/spina/admin/conferences/delegates/_form_presentations.html.haml +0 -12
  82. data/app/views/spina/admin/conferences/dietary_requirements/_form_delegates.html.haml +0 -12
  83. data/app/views/spina/admin/conferences/institutions/_form_delegates.html.haml +0 -12
  84. data/app/views/spina/admin/conferences/institutions/_form_rooms.html.haml +0 -12
  85. data/app/views/spina/admin/conferences/presentation_types/_form_presentations.html.haml +0 -12
  86. data/app/views/spina/admin/conferences/presentations/_form_presenters.html.haml +0 -12
  87. data/app/views/spina/admin/conferences/sessions/_form_presentations.html.haml +0 -12
  88. data/app/views/spina/admin/partables/admin/conferences/date_parts/_form.html.haml +0 -5
  89. data/app/views/spina/admin/partables/admin/conferences/email_address_parts/_form.html.haml +0 -5
  90. data/app/views/spina/admin/partables/admin/conferences/time_parts/_form.html.haml +0 -7
  91. data/app/views/spina/admin/partables/admin/conferences/url_parts/_form.html.haml +0 -5
@@ -0,0 +1,14 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Spina
4
+ module Parts
5
+ module Admin
6
+ module Conferences
7
+ # Date parts, without associated times.
8
+ class Date < Spina::Parts::Base
9
+ attr_json :content, :date
10
+ end
11
+ end
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,20 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Spina
4
+ module Parts
5
+ module Admin
6
+ module Conferences
7
+ # Email address parts. The format is validated.
8
+ #
9
+ # = Validators
10
+ # Email address (using {EmailAddressValidator}):: {#content}.
11
+ # @see EmailAddressValidator
12
+ class EmailAddress < Spina::Parts::Base
13
+ attr_json :content, :string
14
+
15
+ validates :content, 'spina/admin/conferences/email_address': true, allow_blank: true
16
+ end
17
+ end
18
+ end
19
+ end
20
+ end
@@ -0,0 +1,14 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Spina
4
+ module Parts
5
+ module Admin
6
+ module Conferences
7
+ # Time parts.
8
+ class Time < Spina::Parts::Base
9
+ attr_json :content, :time
10
+ end
11
+ end
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,20 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Spina
4
+ module Parts
5
+ module Admin
6
+ module Conferences
7
+ # URL parts. The format is validated.
8
+ #
9
+ # = Validators
10
+ # HTTP(S) URL (using {HttpUrlValidator}):: {#content}.
11
+ # @see HttpUrlValidator
12
+ class Url < Spina::Parts::Base
13
+ attr_json :content, :string
14
+
15
+ validates :content, 'spina/admin/conferences/http_url': true, allow_blank: true
16
+ end
17
+ end
18
+ end
19
+ end
20
+ end
@@ -1,14 +1,12 @@
1
- #conferences.tab-content.well
1
+ .well
2
2
  .table-container
3
3
  %table.table
4
4
  %thead
5
5
  %tr
6
6
  %th= Spina::Admin::Conferences::Conference.human_attribute_name :name
7
7
  %th= Spina::Admin::Conferences::Conference.human_attribute_name :year
8
- %th= Spina::Admin::Conferences::Conference.human_attribute_name :institution
9
8
  %th= Spina::Admin::Conferences::Conference.human_attribute_name :start_date
10
9
  %th= Spina::Admin::Conferences::Conference.human_attribute_name :finish_date
11
10
  %th
12
11
 
13
- %tbody
14
- = render @delegate.conferences.any? ? @delegate.conferences : 'empty_list', message: t('spina.admin.conferences.conferences.index.no_conferences')
12
+ %tbody= render conferences.presence || 'empty_list', message: t('.no_conferences')
@@ -1,4 +1,4 @@
1
- #delegates.tab-content.well
1
+ .well
2
2
  .table-container
3
3
  %table.table
4
4
  %thead
@@ -8,5 +8,4 @@
8
8
  %th= Spina::Admin::Conferences::Delegate.human_attribute_name :institution
9
9
  %th
10
10
 
11
- %tbody
12
- = render @conference.delegates.any? ? @conference.delegates : 'empty_list', message: t('spina.admin.conferences.delegates.index.no_delegates')
11
+ %tbody= render delegates.presence || 'empty_list', message: t('.no_delegates')
@@ -0,0 +1,9 @@
1
+ .well
2
+ .table-container
3
+ %table.table
4
+ %thead
5
+ %tr
6
+ %th= Spina::Admin::Conferences::DietaryRequirement.human_attribute_name :name
7
+ %th
8
+
9
+ %tbody= render dietary_requirements.presence || 'empty_list', message: t('.no_dietary_requirements')
@@ -0,0 +1,10 @@
1
+ .well
2
+ .table-container
3
+ %table.table
4
+ %thead
5
+ %tr
6
+ %th= Spina::Admin::Conferences::Institution.human_attribute_name :name
7
+ %th= Spina::Admin::Conferences::Institution.human_attribute_name :city
8
+ %th
9
+
10
+ %tbody= render institutions.presence || 'empty_list', message: t('.no_institutions')
@@ -0,0 +1,10 @@
1
+ .well
2
+ .table-container
3
+ %table.table
4
+ %thead
5
+ %tr
6
+ %th= Spina::Admin::Conferences::DietaryRequirement.human_attribute_name :name
7
+ %th
8
+
9
+ %tbody
10
+ = render presentation_attachment_types.presence || 'empty_list', message: t('.no_presentation_attachment_types')
@@ -1,4 +1,4 @@
1
- #presentation_types.tab-content.well
1
+ .well
2
2
  .table-container
3
3
  %table.table
4
4
  %thead
@@ -8,5 +8,4 @@
8
8
  %th= Spina::Admin::Conferences::PresentationType.human_attribute_name :duration
9
9
  %th
10
10
 
11
- %tbody
12
- = render @conference.presentation_types.any? ? @conference.presentation_types : 'empty_list', message: t('spina.admin.conferences.presentation_types.index.no_presentation_types')
11
+ %tbody= render presentation_types.presence || 'empty_list', message: t('.no_presentation_types')
@@ -1,4 +1,4 @@
1
- #presentations.tab-content.well
1
+ .well
2
2
  .table-container
3
3
  %table.table
4
4
  %thead
@@ -8,5 +8,4 @@
8
8
  %th= Spina::Admin::Conferences::Presentation.human_attribute_name :presenters
9
9
  %th
10
10
 
11
- %tbody
12
- = render @room.presentations.any? ? @room.presentations : 'empty_list', message: t('spina.admin.conferences.presentations.index.no_presentations')
11
+ %tbody= render presentations.presence || 'empty_list', message: t('.no_presentations')
@@ -1,4 +1,4 @@
1
- #rooms.tab-content.well
1
+ .well
2
2
  .table-container
3
3
  %table.table
4
4
  %thead
@@ -8,5 +8,4 @@
8
8
  %th= Spina::Admin::Conferences::Room.human_attribute_name :number
9
9
  %th
10
10
 
11
- %tbody
12
- = render @conference.rooms.any? ? @conference.rooms : 'empty_list', message: t('spina.admin.conferences.rooms.index.no_rooms')
11
+ %tbody= render rooms.presence || 'empty_list', message: t('.no_rooms')
@@ -1,4 +1,4 @@
1
- #sessions.tab-content.well
1
+ .well
2
2
  .table-container
3
3
  %table.table
4
4
  %thead
@@ -8,5 +8,4 @@
8
8
  %th= Spina::Admin::Conferences::Session.human_attribute_name :room
9
9
  %th
10
10
 
11
- %tbody
12
- = render @presentation_type.sessions.any? ? @presentation_type.sessions : 'empty_list', message: t('spina.admin.conferences.sessions.index.no_sessions')
11
+ %tbody= render sessions.presence || 'empty_list', message: t('.no_sessions')
@@ -1,35 +1,29 @@
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
26
+ = render 'spina/admin/shared/rich_text_field', f: f, field: :description
33
27
 
34
28
  = f.hidden_field :id
35
29
 
@@ -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: '&#xF12C;' }
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: '&#xF12C;' }
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,4 @@
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
@@ -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]