Skip to content

Commit

Permalink
Restore detailed event form for admins
Browse files Browse the repository at this point in the history
In openSUSE#2987 the detailed view of the event form was inadvertently lost,
presumably due to openSUSE#2975 masking the problem.
  • Loading branch information
AndrewKvalheim committed Mar 1, 2023
1 parent 7851b96 commit 066adde
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions app/views/proposals/_form.html.haml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
- action_is_edit = @event.persisted?
- display_registration = current_user&.is_admin? || @program.cfp&.enable_registrations?
:ruby
action_is_edit = @event.persisted?
user_is_admin = current_user&.is_admin?
display_details = user_is_admin || action_is_edit
display_registration = user_is_admin || @program.cfp&.enable_registrations?

%h4
Proposal Information
Expand All @@ -8,7 +11,7 @@
= f.label :title
%abbr{title: 'This field is required'} *
= f.text_field :title, autofocus: true, required: true, class: 'form-control'
- if action_is_edit
- if display_details
.form-group
= f.label :subtitle
= f.text_field :subtitle, class: 'form-control'
Expand All @@ -31,7 +34,7 @@
- @conference.program.event_types.each do |event_type|
%span{ class: 'help-block select-help-text event_event_type_id collapse', id: "#{event_type.id}-help" }
= event_type.description
- if action_is_edit
- if display_details
- if @conference.program.difficulty_levels.any?
= f.label :difficulty_level
= f.select :difficulty_level_id, @conference.program.difficulty_levels.map{|level| [level.title, level.id ] }, {include_blank: false}, { class: 'select-help-toggle form-control' }
Expand All @@ -53,7 +56,7 @@
%span#abstract-maximum-word-count
250
words.
- if display_registration && action_is_edit
- if display_registration && display_details
%h4
Event Registration
%hr
Expand All @@ -62,14 +65,14 @@
%label
= f.check_box :require_registration
Require participants to register to your event
- if display_registration && action_is_edit
- if display_registration && display_details
.form-group
= f.label :max_attendees
= f.number_field :max_attendees, class: 'form-control'
%span.help-block
- message = @event.room ? "Value must be between 1 and #{@event.room.size}" : 'Check room capacity after scheduling.'
= 'The maximum number of participants. ' + message
- if action_is_edit && current_user.has_any_role?(:admin, { name: :organizer, resource: @conference }, { name: :cfp, resource: @conference })
- if display_details && current_user.has_any_role?(:admin, { name: :organizer, resource: @conference }, { name: :cfp, resource: @conference })
.checkbox
%label
= f.check_box :is_highlight
Expand Down

0 comments on commit 066adde

Please sign in to comment.